diff options
author | Kees Cook <keescook@chromium.org> | 2017-07-25 17:42:36 -0400 |
---|---|---|
committer | Kees Cook <keescook@chromium.org> | 2017-07-28 13:16:14 -0400 |
commit | e758aba1ea02851e071a1b583cee37e5cfd77f77 (patch) | |
tree | 0ba2eeb09c158a369152315bcf45aa36e885b012 | |
parent | 520eccdfe187591a51ea9ab4c1a024ae4d0f68d9 (diff) |
drm/amd/powerplay: rv: Use designated initializers
As done for vega10 in commit 3ddd396f6b57 ("drm/amd/powerplay: Use
designated initializers") mark other tableFunction entries with designated
initializers. The randstruct plugin requires designated initializers for
structures that are entirely function pointers.
Cc: Rex Zhu <Rex.Zhu@amd.com>
Cc: Hawking Zhang <Hawking.Zhang@amd.com>
Signed-off-by: Kees Cook <keescook@chromium.org>
Acked-by: Alex Deucher <alexander.deucher@amd.com>
-rw-r--r-- | drivers/gpu/drm/amd/powerplay/hwmgr/rv_hwmgr.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/gpu/drm/amd/powerplay/hwmgr/rv_hwmgr.c b/drivers/gpu/drm/amd/powerplay/hwmgr/rv_hwmgr.c index 4c7f430b36eb..8e6cfd89c7e0 100644 --- a/drivers/gpu/drm/amd/powerplay/hwmgr/rv_hwmgr.c +++ b/drivers/gpu/drm/amd/powerplay/hwmgr/rv_hwmgr.c | |||
@@ -308,8 +308,8 @@ static int rv_tf_set_num_active_display(struct pp_hwmgr *hwmgr, void *input, | |||
308 | } | 308 | } |
309 | 309 | ||
310 | static const struct phm_master_table_item rv_set_power_state_list[] = { | 310 | static const struct phm_master_table_item rv_set_power_state_list[] = { |
311 | { NULL, rv_tf_set_clock_limit }, | 311 | { .tableFunction = rv_tf_set_clock_limit }, |
312 | { NULL, rv_tf_set_num_active_display }, | 312 | { .tableFunction = rv_tf_set_num_active_display }, |
313 | { } | 313 | { } |
314 | }; | 314 | }; |
315 | 315 | ||
@@ -382,7 +382,7 @@ static int rv_tf_disable_gfx_off(struct pp_hwmgr *hwmgr, | |||
382 | } | 382 | } |
383 | 383 | ||
384 | static const struct phm_master_table_item rv_disable_dpm_list[] = { | 384 | static const struct phm_master_table_item rv_disable_dpm_list[] = { |
385 | {NULL, rv_tf_disable_gfx_off}, | 385 | { .tableFunction = rv_tf_disable_gfx_off }, |
386 | { }, | 386 | { }, |
387 | }; | 387 | }; |
388 | 388 | ||
@@ -407,7 +407,7 @@ static int rv_tf_enable_gfx_off(struct pp_hwmgr *hwmgr, | |||
407 | } | 407 | } |
408 | 408 | ||
409 | static const struct phm_master_table_item rv_enable_dpm_list[] = { | 409 | static const struct phm_master_table_item rv_enable_dpm_list[] = { |
410 | {NULL, rv_tf_enable_gfx_off}, | 410 | { .tableFunction = rv_tf_enable_gfx_off }, |
411 | { }, | 411 | { }, |
412 | }; | 412 | }; |
413 | 413 | ||