Applied. Thanks! On Tue, Aug 1, 2023 at 9:38 PM Ran Sun <sunran001@xxxxxxxxxx> wrote: > > Fix the following errors reported by checkpatch: > > ERROR: open brace '{' following struct go on the same line > > Signed-off-by: Ran Sun <sunran001@xxxxxxxxxx> > --- > drivers/gpu/drm/amd/pm/powerplay/inc/pp_thermal.h | 6 ++---- > 1 file changed, 2 insertions(+), 4 deletions(-) > > diff --git a/drivers/gpu/drm/amd/pm/powerplay/inc/pp_thermal.h b/drivers/gpu/drm/amd/pm/powerplay/inc/pp_thermal.h > index f7c41185097e..2003acc70ca0 100644 > --- a/drivers/gpu/drm/amd/pm/powerplay/inc/pp_thermal.h > +++ b/drivers/gpu/drm/amd/pm/powerplay/inc/pp_thermal.h > @@ -25,14 +25,12 @@ > > #include "power_state.h" > > -static const struct PP_TemperatureRange __maybe_unused SMU7ThermalWithDelayPolicy[] = > -{ > +static const struct PP_TemperatureRange __maybe_unused SMU7ThermalWithDelayPolicy[] = { > {-273150, 99000, 99000, -273150, 99000, 99000, -273150, 99000, 99000}, > { 120000, 120000, 120000, 120000, 120000, 120000, 120000, 120000, 120000}, > }; > > -static const struct PP_TemperatureRange __maybe_unused SMU7ThermalPolicy[] = > -{ > +static const struct PP_TemperatureRange __maybe_unused SMU7ThermalPolicy[] = { > {-273150, 99000, 99000, -273150, 99000, 99000, -273150, 99000, 99000}, > { 120000, 120000, 120000, 120000, 120000, 120000, 120000, 120000, 120000}, > }; > -- > 2.17.1 >