Message ID | 20200426094238.23914-1-yanaijie@huawei.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | ASoC: ti: remove comparison to bool in omap_mcbsp_dai_set_dai_fmt() | expand |
On 4/26/20 12:42 PM, Jason Yan wrote: > Fix the following coccicheck warning: > > sound/soc/ti/omap-mcbsp.c:1188:5-11: WARNING: Comparison to bool > > Signed-off-by: Jason Yan <yanaijie@huawei.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; > Acked-by: Jarkko Nikula <jarkko.nikula@bitmer.com>
On Sun, 26 Apr 2020 17:42:38 +0800, Jason Yan wrote: > Fix the following coccicheck warning: > > sound/soc/ti/omap-mcbsp.c:1188:5-11: WARNING: Comparison to bool > > Signed-off-by: Jason Yan <yanaijie@huawei.com> > Acked-by: Jarkko Nikula <jarkko.nikula@bitmer.com> > > [...] Applied to https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git for-5.8 Thanks! [1/1] ASoC: ti: remove comparison to bool in omap_mcbsp_dai_set_dai_fmt() commit: 1597bfbfdb3c6e97ad0f63abedc2a26d6c1850c7 All being well this means that it will be integrated into the linux-next tree (usually sometime in the next 24 hours) and sent to Linus during the next merge window (or sooner if it is a bug fix), however if problems are discovered then the patch may be dropped or reverted. You may get further e-mails resulting from automated or manual testing and review of the tree, please engage with people reporting problems and send followup patches addressing any issues that are reported if needed. If any updates are required or you are submitting further changes they should be sent as incremental updates against current git, existing patches will not be replaced. Please add any relevant lists and maintainers to the CCs when replying to this mail. Thanks, Mark
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;
Fix the following coccicheck warning: sound/soc/ti/omap-mcbsp.c:1188:5-11: WARNING: Comparison to bool Signed-off-by: Jason Yan <yanaijie@huawei.com> --- sound/soc/ti/omap-mcbsp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)