diff options
author | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2011-07-15 15:28:32 +0200 |
---|---|---|
committer | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2011-07-15 15:41:38 +0200 |
commit | b35e160a111aa9ae3fad6294e038be20d0da721b (patch) | |
tree | bca3d39aab83be513921519f18b9081a74bdaf67 /sound | |
parent | ASoC: sh: fsi-hdmi: fixup snd_soc_card name (diff) | |
download | linux-b35e160a111aa9ae3fad6294e038be20d0da721b.tar.xz linux-b35e160a111aa9ae3fad6294e038be20d0da721b.zip |
ASoC: Fix shift in WM8958 accessory detection default implementation
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Cc: stable@kernel.org
Diffstat (limited to 'sound')
-rw-r--r-- | sound/soc/codecs/wm8994.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/codecs/wm8994.c b/sound/soc/codecs/wm8994.c index c2fc0356c2a4..5f0c238e1783 100644 --- a/sound/soc/codecs/wm8994.c +++ b/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: |