aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlex Deucher <alexander.deucher@amd.com>2015-12-21 17:13:05 -0500
committerAlex Deucher <alexander.deucher@amd.com>2015-12-21 17:13:05 -0500
commiteafbbd9883d0121811a9388988b80476dc12b1bf (patch)
tree8d15887d939167bde26711f4a1cd9fc5a5daa20c
parent53d8eabe3df36015daf40a7a9bfad9b2ffafc6bd (diff)
amd/powerplay: fix copy paste typo in hardwaremanager.c
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
-rw-r--r--drivers/gpu/drm/amd/powerplay/hwmgr/hardwaremanager.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/amd/powerplay/hwmgr/hardwaremanager.c b/drivers/gpu/drm/amd/powerplay/hwmgr/hardwaremanager.c
index 0fddac9f7cb4..001b8bb4143d 100644
--- a/drivers/gpu/drm/amd/powerplay/hwmgr/hardwaremanager.c
+++ b/drivers/gpu/drm/amd/powerplay/hwmgr/hardwaremanager.c
@@ -212,7 +212,7 @@ int phm_notify_smc_display_config_after_ps_adjustment(struct pp_hwmgr *hwmgr)
212 212
213 if (phm_cap_enabled(hwmgr->platform_descriptor.platformCaps, 213 if (phm_cap_enabled(hwmgr->platform_descriptor.platformCaps,
214 PHM_PlatformCaps_TablelessHardwareInterface)) 214 PHM_PlatformCaps_TablelessHardwareInterface))
215 if (NULL != hwmgr->hwmgr_func->display_config_changed) 215 if (NULL != hwmgr->hwmgr_func->notify_smc_display_config_after_ps_adjustment)
216 hwmgr->hwmgr_func->notify_smc_display_config_after_ps_adjustment(hwmgr); 216 hwmgr->hwmgr_func->notify_smc_display_config_after_ps_adjustment(hwmgr);
217 217
218 return 0; 218 return 0;