From: Oleg Chernovskiy Date: Mon, 11 Aug 2014 17:53:46 +0000 (+0400) Subject: drm/radeon: Add missing lines to ci_set_thermal_temperature_range X-Git-Tag: v3.17-rc2~9^2~4^2~3 X-Git-Url: https://openfabrics.org/gitweb/?a=commitdiff_plain;h=6bce8d9772c1c606921a9c99e566eb14202f6669;p=~emulex%2Finfiniband.git drm/radeon: Add missing lines to ci_set_thermal_temperature_range Properly set the thermal min and max temp on CI. Otherwise, we end up setting the thermal ranges to 0 on resume and end up in the lowest power state. Signed-off-by: Oleg Chernovskiy Signed-off-by: Alex Deucher Cc: stable@vger.kernel.org --- diff --git a/drivers/gpu/drm/radeon/ci_dpm.c b/drivers/gpu/drm/radeon/ci_dpm.c index 022561e2870..d416bb2ff48 100644 --- a/drivers/gpu/drm/radeon/ci_dpm.c +++ b/drivers/gpu/drm/radeon/ci_dpm.c @@ -869,6 +869,9 @@ static int ci_set_thermal_temperature_range(struct radeon_device *rdev, WREG32_SMC(CG_THERMAL_CTRL, tmp); #endif + rdev->pm.dpm.thermal.min_temp = low_temp; + rdev->pm.dpm.thermal.max_temp = high_temp; + return 0; }