Message ID | 1612681361-63404-1-git-send-email-jiapeng.chong@linux.alibaba.com |
---|---|
State | New |
Headers | show |
Series | ALSA: pci: Assign boolean values to a bool variable | expand |
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);
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(-)