drm/amdgpu: Clean up errors in vega20_baco.c
authorRan Sun <sunran001@208suo.com>
Tue, 1 Aug 2023 08:02:46 +0000 (08:02 +0000)
committerAlex Deucher <alexander.deucher@amd.com>
Wed, 9 Aug 2023 13:41:04 +0000 (09:41 -0400)
Fix the following errors reported by checkpatch:

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

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

index 8d99c7a..994c0d3 100644 (file)
@@ -31,8 +31,7 @@
 
 #include "amdgpu_ras.h"
 
-static const struct soc15_baco_cmd_entry clean_baco_tbl[] =
-{
+static const struct soc15_baco_cmd_entry clean_baco_tbl[] = {
        {CMD_WRITE, SOC15_REG_ENTRY(NBIF, 0, mmBIOS_SCRATCH_6), 0, 0, 0, 0},
        {CMD_WRITE, SOC15_REG_ENTRY(NBIF, 0, mmBIOS_SCRATCH_7), 0, 0, 0, 0},
 };
@@ -90,11 +89,11 @@ int vega20_baco_set_state(struct pp_hwmgr *hwmgr, enum BACO_STATE state)
                        data |= 0x80000000;
                        WREG32_SOC15(THM, 0, mmTHM_BACO_CNTL, data);
 
-                       if(smum_send_msg_to_smc_with_parameter(hwmgr,
+                       if (smum_send_msg_to_smc_with_parameter(hwmgr,
                                        PPSMC_MSG_EnterBaco, 0, NULL))
                                return -EINVAL;
                } else {
-                       if(smum_send_msg_to_smc_with_parameter(hwmgr,
+                       if (smum_send_msg_to_smc_with_parameter(hwmgr,
                                        PPSMC_MSG_EnterBaco, 1, NULL))
                                return -EINVAL;
                }