diff options
author | Rex Zhu <Rex.Zhu@amd.com> | 2016-08-31 06:13:08 -0400 |
---|---|---|
committer | Alex Deucher <alexander.deucher@amd.com> | 2016-09-02 11:31:43 -0400 |
commit | cfcc283cee50e98e47a56ab2b3f85540a1f93ab4 (patch) | |
tree | 2ecf19c6aceda95c417797ba06a8d94d7b2e8537 | |
parent | 48d7b759a8bc96054b59fc07098e05dcca0c93bb (diff) |
drm/amd/powerplay: refine struct name for coding style reason.
delete useless member.
Signed-off-by: Rex Zhu <Rex.Zhu@amd.com>
Reviewed-by: Alex Deucher <alexander.deucher@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
-rw-r--r-- | drivers/gpu/drm/amd/powerplay/inc/power_state.h | 20 |
1 files changed, 9 insertions, 11 deletions
diff --git a/drivers/gpu/drm/amd/powerplay/inc/power_state.h b/drivers/gpu/drm/amd/powerplay/inc/power_state.h index 08b4b9f1c6aa..9ceaed9ac52a 100644 --- a/drivers/gpu/drm/amd/powerplay/inc/power_state.h +++ b/drivers/gpu/drm/amd/powerplay/inc/power_state.h | |||
@@ -171,30 +171,28 @@ enum PP_MMProfilingState { | |||
171 | PP_MMProfilingState_Stopped | 171 | PP_MMProfilingState_Stopped |
172 | }; | 172 | }; |
173 | 173 | ||
174 | struct PP_Clock_Engine_Request { | 174 | struct pp_clock_engine_request { |
175 | unsigned long clientType; | 175 | unsigned long client_type; |
176 | unsigned long ctxid; | 176 | unsigned long ctx_id; |
177 | uint64_t context_handle; | 177 | uint64_t context_handle; |
178 | unsigned long sclk; | 178 | unsigned long sclk; |
179 | unsigned long sclkHardMin; | 179 | unsigned long sclk_hard_min; |
180 | unsigned long mclk; | 180 | unsigned long mclk; |
181 | unsigned long iclk; | 181 | unsigned long iclk; |
182 | unsigned long evclk; | 182 | unsigned long evclk; |
183 | unsigned long ecclk; | 183 | unsigned long ecclk; |
184 | unsigned long ecclkHardMin; | 184 | unsigned long ecclk_hard_min; |
185 | unsigned long vclk; | 185 | unsigned long vclk; |
186 | unsigned long dclk; | 186 | unsigned long dclk; |
187 | unsigned long samclk; | 187 | unsigned long sclk_over_drive; |
188 | unsigned long acpclk; | 188 | unsigned long mclk_over_drive; |
189 | unsigned long sclkOverdrive; | ||
190 | unsigned long mclkOverdrive; | ||
191 | unsigned long sclk_threshold; | 189 | unsigned long sclk_threshold; |
192 | unsigned long flag; | 190 | unsigned long flag; |
193 | unsigned long vclk_ceiling; | 191 | unsigned long vclk_ceiling; |
194 | unsigned long dclk_ceiling; | 192 | unsigned long dclk_ceiling; |
195 | unsigned long num_cus; | 193 | unsigned long num_cus; |
196 | unsigned long pmflag; | 194 | unsigned long pm_flag; |
197 | enum PP_MMProfilingState MMProfilingState; | 195 | enum PP_MMProfilingState mm_profiling_state; |
198 | }; | 196 | }; |
199 | 197 | ||
200 | #endif | 198 | #endif |