This is a note to let you know that I've just added the patch titled
drm/radeon: fix typo in fetching mpll params
to the 3.12-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-fetching-mpll-params.patch
and it can be found in the queue-3.12 subdirectory.
If you, or anyone else, feels it should not be added to the stable tree,
please let <[email protected]> know about it.
>From 180f805f4f03b2894701f9831b4e96a308330b22 Mon Sep 17 00:00:00 2001
From: Alex Deucher <[email protected]>
Date: Thu, 21 Nov 2013 09:52:01 -0500
Subject: drm/radeon: fix typo in fetching mpll params
From: Alex Deucher <[email protected]>
commit 180f805f4f03b2894701f9831b4e96a308330b22 upstream.
Copy-paste typo. Value should be 0-2, not 0-1.
Noticed-by: Sylvain BERTRAND <[email protected]>
Signed-off-by: Alex Deucher <[email protected]>
Signed-off-by: Greg Kroah-Hartman <[email protected]>
---
drivers/gpu/drm/radeon/radeon_atombios.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
--- a/drivers/gpu/drm/radeon/radeon_atombios.c
+++ b/drivers/gpu/drm/radeon/radeon_atombios.c
@@ -2918,7 +2918,7 @@ int radeon_atom_get_memory_pll_dividers(
mpll_param->dll_speed = args.ucDllSpeed;
mpll_param->bwcntl = args.ucBWCntl;
mpll_param->vco_mode =
- (args.ucPllCntlFlag &
MPLL_CNTL_FLAG_VCO_MODE_MASK) ? 1 : 0;
+ (args.ucPllCntlFlag &
MPLL_CNTL_FLAG_VCO_MODE_MASK);
mpll_param->yclk_sel =
(args.ucPllCntlFlag &
MPLL_CNTL_FLAG_BYPASS_DQ_PLL) ? 1 : 0;
mpll_param->qdr =
Patches currently in stable-queue which might be from [email protected]
are
queue-3.12/drm-radeon-fix-typo-in-fetching-mpll-params.patch
queue-3.12/drm-radeon-program-dce2-audio-dto-just-like-dce3.patch
queue-3.12/drm-radeon-fixup-bad-vram-size-on-si.patch
queue-3.12/drm-radeon-atom-fix-bus-probes-when-hw_i2c-is-set-v2.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