From: Jie Yang Date: Fri, 27 Feb 2015 04:52:26 +0000 (+0800) Subject: ASoC: rt286: correct the OR to AND X-Git-Tag: v4.1-rc1~117^2~1^2~3^5~3 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=5af76d5c0882435241841186b054262407e9eabb;p=karo-tx-linux.git ASoC: rt286: correct the OR to AND Here it should be AND(&) to check the status. Signed-off-by: Jie Yang Signed-off-by: Mark Brown --- diff --git a/sound/soc/codecs/rt286.c b/sound/soc/codecs/rt286.c index 16723b167fbf..49c44a77b518 100644 --- a/sound/soc/codecs/rt286.c +++ b/sound/soc/codecs/rt286.c @@ -397,7 +397,7 @@ int rt286_mic_detect(struct snd_soc_codec *codec, struct snd_soc_jack *jack) if (jack) { /* enable IRQ */ - if (rt286->jack->status | SND_JACK_HEADPHONE) + if (rt286->jack->status & SND_JACK_HEADPHONE) snd_soc_dapm_force_enable_pin(&codec->dapm, "LDO1"); regmap_update_bits(rt286->regmap, RT286_IRQ_CTRL, 0x2, 0x2); /* Send an initial empty report */