OSDN Git Service

drm/amd/pm: Clean up errors in smu_v13_0.c
authorRan Sun <sunran001@208suo.com>
Tue, 1 Aug 2023 01:43:18 +0000 (01:43 +0000)
committerAlex Deucher <alexander.deucher@amd.com>
Wed, 9 Aug 2023 13:40:06 +0000 (09:40 -0400)
Fix the following errors reported by checkpatch:

ERROR: space required before the open parenthesis '('
ERROR: that open brace { should be on the previous line

Signed-off-by: Ran Sun <sunran001@208suo.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
drivers/gpu/drm/amd/pm/swsmu/smu13/smu_v13_0.c

index 9b62b45..895cda8 100644 (file)
@@ -1121,7 +1121,7 @@ smu_v13_0_display_clock_voltage_request(struct smu_context *smu,
 
                ret = smu_v13_0_set_hard_freq_limited_range(smu, clk_select, clk_freq, 0);
 
-               if(clk_select == SMU_UCLK)
+               if (clk_select == SMU_UCLK)
                        smu->hard_min_uclk_req_from_dal = clk_freq;
        }
 
@@ -1437,8 +1437,7 @@ static int smu_v13_0_irq_process(struct amdgpu_device *adev,
        return 0;
 }
 
-static const struct amdgpu_irq_src_funcs smu_v13_0_irq_funcs =
-{
+static const struct amdgpu_irq_src_funcs smu_v13_0_irq_funcs = {
        .set = smu_v13_0_set_irq_state,
        .process = smu_v13_0_irq_process,
 };
@@ -1933,7 +1932,7 @@ static int smu_v13_0_get_dpm_level_count(struct smu_context *smu,
 
        ret = smu_v13_0_get_dpm_freq_by_index(smu, clk_type, 0xff, value);
        /* SMU v13.0.2 FW returns 0 based max level, increment by one for it */
-       if((smu->adev->ip_versions[MP1_HWIP][0] == IP_VERSION(13, 0, 2)) && (!ret && value))
+       if ((smu->adev->ip_versions[MP1_HWIP][0] == IP_VERSION(13, 0, 2)) && (!ret && value))
                ++(*value);
 
        return ret;