Browse Source

ASoC: Fix shift in WM8958 accessory detection default implementation

Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Cc: stable@kernel.org
Mark Brown 14 years ago
parent
commit
b35e160a11
1 changed files with 1 additions and 1 deletions
  1. 1 1
      sound/soc/codecs/wm8994.c

+ 1 - 1
sound/soc/codecs/wm8994.c

@@ -2763,7 +2763,7 @@ static void wm8958_default_micdet(u16 status, void *data)
 	report = SND_JACK_MICROPHONE;
 
 	/* Everything else is buttons; just assign slots */
-	if (status & 0x1c0)
+	if (status & 0x1c)
 		report |= SND_JACK_BTN_0;
 
 done: