This is a note to let you know that I've just added the patch titled
drm/radeon: fix typo in ci_stop_dpm()
to the 3.15-stable tree which can be found at:
http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary
The filename of the patch is:
drm-radeon-fix-typo-in-ci_stop_dpm.patch
and it can be found in the queue-3.15 subdirectory.
If you, or anyone else, feels it should not be added to the stable tree,
please let <[email protected]> know about it.
>From ed96377132e564d797c48a5490fd46bed01c4273 Mon Sep 17 00:00:00 2001
From: Alex Deucher <[email protected]>
Date: Tue, 8 Jul 2014 18:25:25 -0400
Subject: drm/radeon: fix typo in ci_stop_dpm()
From: Alex Deucher <[email protected]>
commit ed96377132e564d797c48a5490fd46bed01c4273 upstream.
Need to use the RREG32_SMC() accessor since the register
is an smc indirect index.
Signed-off-by: Alex Deucher <[email protected]>
Signed-off-by: Greg Kroah-Hartman <[email protected]>
---
drivers/gpu/drm/radeon/ci_dpm.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
--- a/drivers/gpu/drm/radeon/ci_dpm.c
+++ b/drivers/gpu/drm/radeon/ci_dpm.c
@@ -1179,7 +1179,7 @@ static int ci_stop_dpm(struct radeon_dev
tmp &= ~GLOBAL_PWRMGT_EN;
WREG32_SMC(GENERAL_PWRMGT, tmp);
- tmp = RREG32(SCLK_PWRMGT_CNTL);
+ tmp = RREG32_SMC(SCLK_PWRMGT_CNTL);
tmp &= ~DYNAMIC_PM_EN;
WREG32_SMC(SCLK_PWRMGT_CNTL, tmp);
Patches currently in stable-queue which might be from [email protected]
are
queue-3.15/drm-radeon-dpm-reenabling-ss-on-cayman.patch
queue-3.15/drm-radeon-fix-typo-in-golden-register-setup-on-evergreen.patch
queue-3.15/drm-radeon-fix-typo-in-ci_stop_dpm.patch
queue-3.15/drm-radeon-stop-poisoning-the-gart-tlb.patch
queue-3.15/drm-radeon-page-table-bos-are-kernel-allocations.patch
--
To unsubscribe from this list: send the line "unsubscribe stable" in
the body of a message to [email protected]
More majordomo info at http://vger.kernel.org/majordomo-info.html