aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/gpu
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/gpu')
-rw-r--r--drivers/gpu/drm/amd/powerplay/hwmgr/rv_hwmgr.c8
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 edc5fb6412d9..2c3e6baf2524 100644
--- a/drivers/gpu/drm/amd/powerplay/hwmgr/rv_hwmgr.c
+++ b/drivers/gpu/drm/amd/powerplay/hwmgr/rv_hwmgr.c
@@ -317,8 +317,8 @@ static int rv_tf_set_num_active_display(struct pp_hwmgr *hwmgr, void *input,
317} 317}
318 318
319static const struct phm_master_table_item rv_set_power_state_list[] = { 319static const struct phm_master_table_item rv_set_power_state_list[] = {
320 { NULL, rv_tf_set_clock_limit }, 320 { .tableFunction = rv_tf_set_clock_limit },
321 { NULL, rv_tf_set_num_active_display }, 321 { .tableFunction = rv_tf_set_num_active_display },
322 { } 322 { }
323}; 323};
324 324
@@ -391,7 +391,7 @@ static int rv_tf_disable_gfx_off(struct pp_hwmgr *hwmgr,
391} 391}
392 392
393static const struct phm_master_table_item rv_disable_dpm_list[] = { 393static const struct phm_master_table_item rv_disable_dpm_list[] = {
394 {NULL, rv_tf_disable_gfx_off}, 394 { .tableFunction = rv_tf_disable_gfx_off },
395 { }, 395 { },
396}; 396};
397 397
@@ -416,7 +416,7 @@ static int rv_tf_enable_gfx_off(struct pp_hwmgr *hwmgr,
416} 416}
417 417
418static const struct phm_master_table_item rv_enable_dpm_list[] = { 418static const struct phm_master_table_item rv_enable_dpm_list[] = {
419 {NULL, rv_tf_enable_gfx_off}, 419 { .tableFunction = rv_tf_enable_gfx_off },
420 { }, 420 { },
421}; 421};
422 422