mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-25 01:30:52 +07:00
ASoC: Fix shift in WM8958 accessory detection default implementation
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com> Cc: stable@kernel.org
This commit is contained in:
parent
2c7beb9285
commit
b35e160a11
@ -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:
|
||||
|
Loading…
Reference in New Issue
Block a user