Commit d12d9229 authored by Ran Sun's avatar Ran Sun Committed by Alex Deucher

drm/amd/pm: Clean up errors in smu71.h

Fix the following errors reported by checkpatch:

ERROR: open brace '{' following struct go on the same line
ERROR: space prohibited before open square bracket '['
Signed-off-by: default avatarRan Sun <sunran001@208suo.com>
Signed-off-by: default avatarAlex Deucher <alexander.deucher@amd.com>
parent 6f8e98b9
...@@ -118,8 +118,7 @@ typedef struct { ...@@ -118,8 +118,7 @@ typedef struct {
#endif #endif
struct SMU71_PIDController struct SMU71_PIDController {
{
uint32_t Ki; uint32_t Ki;
int32_t LFWindupUpperLim; int32_t LFWindupUpperLim;
int32_t LFWindupLowerLim; int32_t LFWindupLowerLim;
...@@ -133,8 +132,7 @@ struct SMU71_PIDController ...@@ -133,8 +132,7 @@ struct SMU71_PIDController
typedef struct SMU71_PIDController SMU71_PIDController; typedef struct SMU71_PIDController SMU71_PIDController;
struct SMU7_LocalDpmScoreboard struct SMU7_LocalDpmScoreboard {
{
uint32_t PercentageBusy; uint32_t PercentageBusy;
int32_t PIDError; int32_t PIDError;
...@@ -179,8 +177,8 @@ struct SMU7_LocalDpmScoreboard ...@@ -179,8 +177,8 @@ struct SMU7_LocalDpmScoreboard
uint8_t DteClampMode; uint8_t DteClampMode;
uint8_t FpsClampMode; uint8_t FpsClampMode;
uint16_t LevelResidencyCounters [SMU71_MAX_LEVELS_GRAPHICS]; uint16_t LevelResidencyCounters[SMU71_MAX_LEVELS_GRAPHICS];
uint16_t LevelSwitchCounters [SMU71_MAX_LEVELS_GRAPHICS]; uint16_t LevelSwitchCounters[SMU71_MAX_LEVELS_GRAPHICS];
void (*TargetStateCalculator)(uint8_t); void (*TargetStateCalculator)(uint8_t);
void (*SavedTargetStateCalculator)(uint8_t); void (*SavedTargetStateCalculator)(uint8_t);
...@@ -200,8 +198,7 @@ typedef struct SMU7_LocalDpmScoreboard SMU7_LocalDpmScoreboard; ...@@ -200,8 +198,7 @@ typedef struct SMU7_LocalDpmScoreboard SMU7_LocalDpmScoreboard;
#define SMU7_MAX_VOLTAGE_CLIENTS 12 #define SMU7_MAX_VOLTAGE_CLIENTS 12
struct SMU7_VoltageScoreboard struct SMU7_VoltageScoreboard {
{
uint16_t CurrentVoltage; uint16_t CurrentVoltage;
uint16_t HighestVoltage; uint16_t HighestVoltage;
uint16_t MaxVid; uint16_t MaxVid;
...@@ -325,8 +322,7 @@ typedef struct SMU7_PowerScoreboard SMU7_PowerScoreboard; ...@@ -325,8 +322,7 @@ typedef struct SMU7_PowerScoreboard SMU7_PowerScoreboard;
// -------------------------------------------------------------------------------------------------- // --------------------------------------------------------------------------------------------------
struct SMU7_ThermalScoreboard struct SMU7_ThermalScoreboard {
{
int16_t GpuLimit; int16_t GpuLimit;
int16_t GpuHyst; int16_t GpuHyst;
uint16_t CurrGnbTemp; uint16_t CurrGnbTemp;
...@@ -360,8 +356,7 @@ typedef struct SMU7_ThermalScoreboard SMU7_ThermalScoreboard; ...@@ -360,8 +356,7 @@ typedef struct SMU7_ThermalScoreboard SMU7_ThermalScoreboard;
#define SMU7_VCE_SCLK_HANDSHAKE_DISABLE 0x00020000 #define SMU7_VCE_SCLK_HANDSHAKE_DISABLE 0x00020000
// All 'soft registers' should be uint32_t. // All 'soft registers' should be uint32_t.
struct SMU71_SoftRegisters struct SMU71_SoftRegisters {
{
uint32_t RefClockFrequency; uint32_t RefClockFrequency;
uint32_t PmTimerPeriod; uint32_t PmTimerPeriod;
uint32_t FeatureEnables; uint32_t FeatureEnables;
...@@ -413,8 +408,7 @@ struct SMU71_SoftRegisters ...@@ -413,8 +408,7 @@ struct SMU71_SoftRegisters
typedef struct SMU71_SoftRegisters SMU71_SoftRegisters; typedef struct SMU71_SoftRegisters SMU71_SoftRegisters;
struct SMU71_Firmware_Header struct SMU71_Firmware_Header {
{
uint32_t Digest[5]; uint32_t Digest[5];
uint32_t Version; uint32_t Version;
uint32_t HeaderSize; uint32_t HeaderSize;
......
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