OSDN Git Service

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

ERROR: spaces required around that '=' (ctx:VxW)
ERROR: space required after that ',' (ctx:VxV)

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

index 86d6e88..02ba68d 100644 (file)
@@ -430,37 +430,37 @@ static int smu10_apply_state_adjust_rules(struct pp_hwmgr *hwmgr,
 }
 
 /* temporary hardcoded clock voltage breakdown tables */
-static const DpmClock_t VddDcfClk[]= {
+static const DpmClock_t VddDcfClk[] = {
        { 300, 2600},
        { 600, 3200},
        { 600, 3600},
 };
 
-static const DpmClock_t VddSocClk[]= {
+static const DpmClock_t VddSocClk[] = {
        { 478, 2600},
        { 722, 3200},
        { 722, 3600},
 };
 
-static const DpmClock_t VddFClk[]= {
+static const DpmClock_t VddFClk[] = {
        { 400, 2600},
        {1200, 3200},
        {1200, 3600},
 };
 
-static const DpmClock_t VddDispClk[]= {
+static const DpmClock_t VddDispClk[] = {
        { 435, 2600},
        { 661, 3200},
        {1086, 3600},
 };
 
-static const DpmClock_t VddDppClk[]= {
+static const DpmClock_t VddDppClk[] = {
        { 435, 2600},
        { 661, 3200},
        { 661, 3600},
 };
 
-static const DpmClock_t VddPhyClk[]= {
+static const DpmClock_t VddPhyClk[] = {
        { 540, 2600},
        { 810, 3200},
        { 810, 3600},
@@ -1358,7 +1358,7 @@ static int smu10_set_watermarks_for_clocks_ranges(struct pp_hwmgr *hwmgr,
        struct amdgpu_device *adev = hwmgr->adev;
        int i;
 
-       smu_set_watermarks_for_clocks_ranges(table,wm_with_clock_ranges);
+       smu_set_watermarks_for_clocks_ranges(table, wm_with_clock_ranges);
 
        if (adev->apu_flags & AMD_APU_IS_RAVEN2) {
                for (i = 0; i < NUM_WM_RANGES; i++)
@@ -1461,7 +1461,7 @@ static int smu10_get_power_profile_mode(struct pp_hwmgr *hwmgr, char *buf)
 
        phm_get_sysfs_buf(&buf, &size);
 
-       size += sysfs_emit_at(buf, size, "%s %16s %s %s %s %s\n",title[0],
+       size += sysfs_emit_at(buf, size, "%s %16s %s %s %s %s\n", title[0],
                        title[1], title[2], title[3], title[4], title[5]);
 
        for (i = 0; i <= PP_SMC_POWER_PROFILE_COMPUTE; i++)