2021-02-07 07:05:28

by Jiapeng Chong

[permalink] [raw]
Subject: [PATCH] ALSA: pci: Assign boolean values to a bool variable

Fix the following coccicheck warnings:

./sound/pci/azt3328.c:2451:2-16: WARNING: Assignment of 0/1 to bool
variable.

Reported-by: Abaci Robot <[email protected]>
Signed-off-by: Jiapeng Chong <[email protected]>
---
sound/pci/azt3328.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sound/pci/azt3328.c b/sound/pci/azt3328.c
index 77c7030..37f8fc4 100644
--- a/sound/pci/azt3328.c
+++ b/sound/pci/azt3328.c
@@ -2448,7 +2448,7 @@ static void snd_azf3328_mixer_reg_decode(struct azf3328_mixer_reg *r, unsigned l

/* shutdown codecs to reduce power / noise */
/* have ...ctrl_codec_activity() act properly */
- codec->running = 1;
+ codec->running = true;
snd_azf3328_ctrl_codec_activity(chip, codec_type, 0);

spin_lock_irq(codec->lock);
--
1.8.3.1


2021-02-07 08:51:06

by Takashi Iwai

[permalink] [raw]
Subject: Re: [PATCH] ALSA: pci: Assign boolean values to a bool variable

On Sun, 07 Feb 2021 08:02:41 +0100,
Jiapeng Chong wrote:
>
> Fix the following coccicheck warnings:
>
> ./sound/pci/azt3328.c:2451:2-16: WARNING: Assignment of 0/1 to bool
> variable.
>
> Reported-by: Abaci Robot <[email protected]>
> Signed-off-by: Jiapeng Chong <[email protected]>

Thanks, applied.


Takashi