diff options
Diffstat (limited to 'sound/soc/codecs/rt286.c')
| -rw-r--r-- | sound/soc/codecs/rt286.c | 8 | 
1 files changed, 4 insertions, 4 deletions
diff --git a/sound/soc/codecs/rt286.c b/sound/soc/codecs/rt286.c index 0b0f748bffbe..c9457c247a03 100644 --- a/sound/soc/codecs/rt286.c +++ b/sound/soc/codecs/rt286.c @@ -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,  |