Commit ff06184a authored by Ville Syrjälä's avatar Ville Syrjälä Committed by Alex Deucher

drm/amdgpu/powerplay: Use swap() where appropriate

@swap@
identifier TEMP;
expression A,B;
@@
- TEMP = A;
- A = B;
- B = TEMP;
+ swap(A, B);

@@
type T;
identifier swap.TEMP;
@@
(
- T TEMP;
|
- T TEMP = {...};
)
... when != TEMP

Cc: Rex Zhu <rex.zhu@amd.com>
Cc: Evan Quan <evan.quan@amd.com>
Cc: Alex Deucher <alexander.deucher@amd.com>
Cc: "Christian König" <christian.koenig@amd.com>
Cc: "David (ChunMing) Zhou" <David1.Zhou@amd.com>
Cc: amd-gfx@lists.freedesktop.org
Reviewed-by: default avatarAlex Deucher <alexander.deucher@amd.com>
Signed-off-by: default avatarVille Syrjälä <ville.syrjala@linux.intel.com>
Signed-off-by: default avatarAlex Deucher <alexander.deucher@amd.com>
parent 34b86b75
...@@ -1994,7 +1994,6 @@ static int smu7_sort_lookup_table(struct pp_hwmgr *hwmgr, ...@@ -1994,7 +1994,6 @@ static int smu7_sort_lookup_table(struct pp_hwmgr *hwmgr,
struct phm_ppt_v1_voltage_lookup_table *lookup_table) struct phm_ppt_v1_voltage_lookup_table *lookup_table)
{ {
uint32_t table_size, i, j; uint32_t table_size, i, j;
struct phm_ppt_v1_voltage_lookup_record tmp_voltage_lookup_record;
table_size = lookup_table->count; table_size = lookup_table->count;
PP_ASSERT_WITH_CODE(0 != lookup_table->count, PP_ASSERT_WITH_CODE(0 != lookup_table->count,
...@@ -2005,9 +2004,8 @@ static int smu7_sort_lookup_table(struct pp_hwmgr *hwmgr, ...@@ -2005,9 +2004,8 @@ static int smu7_sort_lookup_table(struct pp_hwmgr *hwmgr,
for (j = i + 1; j > 0; j--) { for (j = i + 1; j > 0; j--) {
if (lookup_table->entries[j].us_vdd < if (lookup_table->entries[j].us_vdd <
lookup_table->entries[j - 1].us_vdd) { lookup_table->entries[j - 1].us_vdd) {
tmp_voltage_lookup_record = lookup_table->entries[j - 1]; swap(lookup_table->entries[j - 1],
lookup_table->entries[j - 1] = lookup_table->entries[j]; lookup_table->entries[j]);
lookup_table->entries[j] = tmp_voltage_lookup_record;
} }
} }
} }
......
...@@ -712,7 +712,6 @@ static int vega10_sort_lookup_table(struct pp_hwmgr *hwmgr, ...@@ -712,7 +712,6 @@ static int vega10_sort_lookup_table(struct pp_hwmgr *hwmgr,
struct phm_ppt_v1_voltage_lookup_table *lookup_table) struct phm_ppt_v1_voltage_lookup_table *lookup_table)
{ {
uint32_t table_size, i, j; uint32_t table_size, i, j;
struct phm_ppt_v1_voltage_lookup_record tmp_voltage_lookup_record;
PP_ASSERT_WITH_CODE(lookup_table && lookup_table->count, PP_ASSERT_WITH_CODE(lookup_table && lookup_table->count,
"Lookup table is empty", return -EINVAL); "Lookup table is empty", return -EINVAL);
...@@ -724,9 +723,8 @@ static int vega10_sort_lookup_table(struct pp_hwmgr *hwmgr, ...@@ -724,9 +723,8 @@ static int vega10_sort_lookup_table(struct pp_hwmgr *hwmgr,
for (j = i + 1; j > 0; j--) { for (j = i + 1; j > 0; j--) {
if (lookup_table->entries[j].us_vdd < if (lookup_table->entries[j].us_vdd <
lookup_table->entries[j - 1].us_vdd) { lookup_table->entries[j - 1].us_vdd) {
tmp_voltage_lookup_record = lookup_table->entries[j - 1]; swap(lookup_table->entries[j - 1],
lookup_table->entries[j - 1] = lookup_table->entries[j]; lookup_table->entries[j]);
lookup_table->entries[j] = tmp_voltage_lookup_record;
} }
} }
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment