mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git
synced 2025-01-17 22:05:08 +00:00
ASoc: rt286: fix boolean tests
Reported by Coccinelle: sound/soc/codecs/rt286.c:927:5-7: WARNING: Comparison to bool sound/soc/codecs/rt286.c:930:5-8: WARNING: Comparison to bool sound/soc/codecs/rt286.c:299:5-7: WARNING: Comparison to bool sound/soc/codecs/rt286.c:302:5-8: WARNING: Comparison to bool Signed-off-by: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com> Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
parent
b793a1e4eb
commit
af3b2b54cb
@ -296,10 +296,10 @@ static void rt286_jack_detect_work(struct work_struct *work)
|
||||
|
||||
rt286_jack_detect(rt286, &hp, &mic);
|
||||
|
||||
if (hp == true)
|
||||
if (hp)
|
||||
status |= SND_JACK_HEADPHONE;
|
||||
|
||||
if (mic == true)
|
||||
if (mic)
|
||||
status |= SND_JACK_MICROPHONE;
|
||||
|
||||
snd_soc_jack_report(rt286->jack, status,
|
||||
@ -924,10 +924,10 @@ static irqreturn_t rt286_irq(int irq, void *data)
|
||||
/* Clear IRQ */
|
||||
regmap_update_bits(rt286->regmap, RT286_IRQ_CTRL, 0x1, 0x1);
|
||||
|
||||
if (hp == true)
|
||||
if (hp)
|
||||
status |= SND_JACK_HEADPHONE;
|
||||
|
||||
if (mic == true)
|
||||
if (mic)
|
||||
status |= SND_JACK_MICROPHONE;
|
||||
|
||||
snd_soc_jack_report(rt286->jack, status,
|
||||
|
Loading…
x
Reference in New Issue
Block a user