diff options
author | Rex Zhu <Rex.Zhu@amd.com> | 2016-03-15 17:42:47 +0800 |
---|---|---|
committer | Alex Deucher <alexander.deucher@amd.com> | 2016-05-04 20:28:13 -0400 |
commit | 971f8daafabaca0e06be19c19070c9152cafe0b1 (patch) | |
tree | 85b61ad8f4b0d168fd3e6f1b58fbde3ab8519c36 /drivers/gpu/drm/amd/powerplay/hwmgr | |
parent | b4c6f99ee7dd12b33a3077d031c1e10c98825f8d (diff) | |
download | blackbird-op-linux-971f8daafabaca0e06be19c19070c9152cafe0b1.tar.gz blackbird-op-linux-971f8daafabaca0e06be19c19070c9152cafe0b1.zip |
drm/amd/powrplay: fix issue that get wrong enable flag.
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>
Diffstat (limited to 'drivers/gpu/drm/amd/powerplay/hwmgr')
-rw-r--r-- | drivers/gpu/drm/amd/powerplay/hwmgr/polaris10_hwmgr.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/drivers/gpu/drm/amd/powerplay/hwmgr/polaris10_hwmgr.c b/drivers/gpu/drm/amd/powerplay/hwmgr/polaris10_hwmgr.c index d08f739efa9f..446ed72feb02 100644 --- a/drivers/gpu/drm/amd/powerplay/hwmgr/polaris10_hwmgr.c +++ b/drivers/gpu/drm/amd/powerplay/hwmgr/polaris10_hwmgr.c @@ -3960,14 +3960,11 @@ static int polaris10_trim_single_dpm_states(struct pp_hwmgr *hwmgr, uint32_t low_limit, uint32_t high_limit) { uint32_t i; - struct polaris10_hwmgr *data = (struct polaris10_hwmgr *)(hwmgr->backend); for (i = 0; i < dpm_table->count; i++) { if ((dpm_table->dpm_levels[i].value < low_limit) || (dpm_table->dpm_levels[i].value > high_limit)) dpm_table->dpm_levels[i].enabled = false; - else if (((1 << i) & data->disable_dpm_mask) == 0) - dpm_table->dpm_levels[i].enabled = false; else dpm_table->dpm_levels[i].enabled = true; } |