diff options
author | Alex Deucher <alexander.deucher@amd.com> | 2015-12-21 17:13:05 -0500 |
---|---|---|
committer | Alex Deucher <alexander.deucher@amd.com> | 2015-12-21 17:13:05 -0500 |
commit | eafbbd9883d0121811a9388988b80476dc12b1bf (patch) | |
tree | 8d15887d939167bde26711f4a1cd9fc5a5daa20c | |
parent | 53d8eabe3df36015daf40a7a9bfad9b2ffafc6bd (diff) | |
download | op-kernel-dev-eafbbd9883d0121811a9388988b80476dc12b1bf.zip op-kernel-dev-eafbbd9883d0121811a9388988b80476dc12b1bf.tar.gz |
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.c | 2 |
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 0fddac9..001b8bb 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) if (phm_cap_enabled(hwmgr->platform_descriptor.platformCaps, PHM_PlatformCaps_TablelessHardwareInterface)) - if (NULL != hwmgr->hwmgr_func->display_config_changed) + if (NULL != hwmgr->hwmgr_func->notify_smc_display_config_after_ps_adjustment) hwmgr->hwmgr_func->notify_smc_display_config_after_ps_adjustment(hwmgr); return 0; |