]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
mt76: fix boolreturn.cocci warnings
authorjing yangyang <cgel.zte@gmail.com>
Fri, 20 Aug 2021 02:41:17 +0000 (19:41 -0700)
committerFelix Fietkau <nbd@nbd.name>
Wed, 20 Oct 2021 08:36:39 +0000 (10:36 +0200)
./drivers/net/wireless/mediatek/mt76/mt7615/usb_sdio.c:172:8-9:WARNING:
return of 0/1 in function 'mt7663_usb_sdio_tx_status_data' with return
type bool

Return statements in functions returning bool should use true/false
instead of 1/0.

Generated by: scripts/coccinelle/misc/boolreturn.cocci

Reported-by: Zeal Robot <zealci@zte.com.cn>
Signed-off-by: jing yangyang <jing.yangyang@zte.com.cn>
Signed-off-by: Felix Fietkau <nbd@nbd.name>
drivers/net/wireless/mediatek/mt76/mt7615/usb_sdio.c

index 996d48cca18a61ea7094903d1ceed1bce936bc2b..bd2939ebcbf4841a4265e162b0cfacdee11a7338 100644 (file)
@@ -169,7 +169,7 @@ bool mt7663_usb_sdio_tx_status_data(struct mt76_dev *mdev, u8 *update)
        mt7615_mac_sta_poll(dev);
        mt7615_mutex_release(dev);
 
-       return 0;
+       return false;
 }
 EXPORT_SYMBOL_GPL(mt7663_usb_sdio_tx_status_data);