[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <20200426094238.23914-1-yanaijie@huawei.com>
Date: Sun, 26 Apr 2020 17:42:38 +0800
From: Jason Yan <yanaijie@...wei.com>
To: <peter.ujfalusi@...com>, <jarkko.nikula@...mer.com>,
<lgirdwood@...il.com>, <broonie@...nel.org>, <perex@...ex.cz>,
<tiwai@...e.com>, <rafael.j.wysocki@...el.com>,
<tglx@...utronix.de>, <alsa-devel@...a-project.org>,
<linux-omap@...r.kernel.org>, <linux-kernel@...r.kernel.org>
CC: Jason Yan <yanaijie@...wei.com>
Subject: [PATCH] ASoC: ti: remove comparison to bool in omap_mcbsp_dai_set_dai_fmt()
Fix the following coccicheck warning:
sound/soc/ti/omap-mcbsp.c:1188:5-11: WARNING: Comparison to bool
Signed-off-by: Jason Yan <yanaijie@...wei.com>
---
sound/soc/ti/omap-mcbsp.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sound/soc/ti/omap-mcbsp.c b/sound/soc/ti/omap-mcbsp.c
index 3d41ca2238d4..0348963f4df7 100644
--- a/sound/soc/ti/omap-mcbsp.c
+++ b/sound/soc/ti/omap-mcbsp.c
@@ -1185,7 +1185,7 @@ static int omap_mcbsp_dai_set_dai_fmt(struct snd_soc_dai *cpu_dai,
default:
return -EINVAL;
}
- if (inv_fs == true)
+ if (inv_fs)
regs->pcr0 ^= FSXP | FSRP;
return 0;
--
2.21.1
Powered by blists - more mailing lists