This is a note to let you know that I've just added the patch titled

    ASoC: Fix shift in WM8958 accessory detection default

to the 2.6.39-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:
     asoc-fix-shift-in-wm8958-accessory-detection-default.patch
and it can be found in the queue-2.6.39 subdirectory.

If you, or anyone else, feels it should not be added to the stable tree,
please let <sta...@kernel.org> know about it.


>From b35e160a111aa9ae3fad6294e038be20d0da721b Mon Sep 17 00:00:00 2001
From: Mark Brown <broo...@opensource.wolfsonmicro.com>
Date: Fri, 15 Jul 2011 22:28:32 +0900
Subject: ASoC: Fix shift in WM8958 accessory detection default
 implementation

From: Mark Brown <broo...@opensource.wolfsonmicro.com>

commit b35e160a111aa9ae3fad6294e038be20d0da721b upstream.

Signed-off-by: Mark Brown <broo...@opensource.wolfsonmicro.com>
Signed-off-by: Greg Kroah-Hartman <gre...@suse.de>

---
 sound/soc/codecs/wm8994.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

--- a/sound/soc/codecs/wm8994.c
+++ b/sound/soc/codecs/wm8994.c
@@ -3021,7 +3021,7 @@ static void wm8958_default_micdet(u16 st
        report = SND_JACK_MICROPHONE;
 
        /* Everything else is buttons; just assign slots */
-       if (status & 0x1c0)
+       if (status & 0x1c)
                report |= SND_JACK_BTN_0;
 
 done:


Patches currently in stable-queue which might be from 
broo...@opensource.wolfsonmicro.com are

queue-2.6.39/asoc-fix-blackfin-i2s-_pointer-implementation-return-in.patch
queue-2.6.39/asoc-ensure-we-delay-long-enough-for-wm8994-fll-to-lock.patch
queue-2.6.39/asoc-correct-wm8994-micbias-supply-widget-hookup.patch
queue-2.6.39/asoc-ak4642-fixup-snd_soc_update_bits-mask-for-pw_mgmt2.patch
queue-2.6.39/asoc-fix-shift-in-wm8958-accessory-detection-default.patch

_______________________________________________
stable mailing list
stable@linux.kernel.org
http://linux.kernel.org/mailman/listinfo/stable

Reply via email to