Messages in this thread Patch in this message |  | | From | Jiapeng Chong <> | Subject | [PATCH] ALSA: pci: Assign boolean values to a bool variable | Date | Sun, 7 Feb 2021 15:02:41 +0800 |
| |
Fix the following coccicheck warnings:
./sound/pci/azt3328.c:2451:2-16: WARNING: Assignment of 0/1 to bool variable.
Reported-by: Abaci Robot <abaci@linux.alibaba.com> Signed-off-by: Jiapeng Chong <jiapeng.chong@linux.alibaba.com> --- 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
|  |