From: Mark Brown Date: Thu, 26 Jan 2012 18:33:24 +0000 (+0000) Subject: ASoC: wm8994: Report any low impedance accessory as a headphone X-Git-Tag: v3.4-rc1~88^2^2~27^2~191 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=7c08b51f2fbb76b768d78ca6b0e13155d2c1e811;p=karo-tx-linux.git ASoC: wm8994: Report any low impedance accessory as a headphone Report any accessory with a low impedance as a headphone, previously anything other than a short or microphone would not be reported at all. The most likely reason is a microphone with incorrect polarity. Signed-off-by: Mark Brown --- diff --git a/sound/soc/codecs/wm8994.c b/sound/soc/codecs/wm8994.c index b047bfada709..11ca19b72d7d 100644 --- a/sound/soc/codecs/wm8994.c +++ b/sound/soc/codecs/wm8994.c @@ -3089,7 +3089,7 @@ static void wm8958_default_micdet(u16 status, void *data) } - if (wm8994->mic_detecting && status & 0x4) { + if (wm8994->mic_detecting && status & 0xfc) { dev_dbg(codec->dev, "Detected headphone\n"); wm8994->mic_detecting = false;