2020-04-26 09:46:08

by Jason Yan

[permalink] [raw]
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 <[email protected]>
---
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


2020-04-26 17:30:39

by Jarkko Nikula

[permalink] [raw]
Subject: Re: [PATCH] ASoC: ti: remove comparison to bool in omap_mcbsp_dai_set_dai_fmt()

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 <[email protected]>
> ---
> 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 <[email protected]>

2020-04-27 13:14:07

by Mark Brown

[permalink] [raw]
Subject: Re: [PATCH] ASoC: ti: remove comparison to bool in omap_mcbsp_dai_set_dai_fmt()

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 <[email protected]>
> Acked-by: Jarkko Nikula <[email protected]>
>
> [...]

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