diff options
author | Rex Zhu <Rex.Zhu@amd.com> | 2016-06-17 06:21:01 -0400 |
---|---|---|
committer | Alex Deucher <alexander.deucher@amd.com> | 2016-06-21 10:22:29 -0400 |
commit | 1d7b84d12af8312b52316029f1fa0fa4eac3c9e4 (patch) | |
tree | adb18b3842d9c9e82cfa06c4462aacd010c35654 | |
parent | 29b9c528b8c295911e8b1e515273e89a2b7fa2d8 (diff) |
drm/amd/powerplay: fix logic error.
the error lead powerplay can't get display info in DGPU case.
store_cc6_data just implement in APU.
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>
Cc: stable@vger.kernel.org
-rw-r--r-- | drivers/gpu/drm/amd/powerplay/hwmgr/hardwaremanager.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/drivers/gpu/drm/amd/powerplay/hwmgr/hardwaremanager.c b/drivers/gpu/drm/amd/powerplay/hwmgr/hardwaremanager.c index fa208ada6892..efb77eda7508 100644 --- a/drivers/gpu/drm/amd/powerplay/hwmgr/hardwaremanager.c +++ b/drivers/gpu/drm/amd/powerplay/hwmgr/hardwaremanager.c | |||
@@ -306,10 +306,14 @@ int phm_store_dal_configuration_data(struct pp_hwmgr *hwmgr, | |||
306 | { | 306 | { |
307 | PHM_FUNC_CHECK(hwmgr); | 307 | PHM_FUNC_CHECK(hwmgr); |
308 | 308 | ||
309 | if (hwmgr->hwmgr_func->store_cc6_data == NULL) | 309 | if (display_config == NULL) |
310 | return -EINVAL; | 310 | return -EINVAL; |
311 | 311 | ||
312 | hwmgr->display_config = *display_config; | 312 | hwmgr->display_config = *display_config; |
313 | |||
314 | if (hwmgr->hwmgr_func->store_cc6_data == NULL) | ||
315 | return -EINVAL; | ||
316 | |||
313 | /* to do pass other display configuration in furture */ | 317 | /* to do pass other display configuration in furture */ |
314 | 318 | ||
315 | if (hwmgr->hwmgr_func->store_cc6_data) | 319 | if (hwmgr->hwmgr_func->store_cc6_data) |