Skip to content

Commit 4fb0a7d

Browse files
jing yangyangnbd168
authored andcommitted
mt76: fix boolreturn.cocci warnings
./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 <[email protected]> Signed-off-by: jing yangyang <[email protected]> Signed-off-by: Felix Fietkau <[email protected]>
1 parent cf592be commit 4fb0a7d

File tree

1 file changed

+1
-1
lines changed
  • drivers/net/wireless/mediatek/mt76/mt7615

1 file changed

+1
-1
lines changed

drivers/net/wireless/mediatek/mt76/mt7615/usb_sdio.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ bool mt7663_usb_sdio_tx_status_data(struct mt76_dev *mdev, u8 *update)
169169
mt7615_mac_sta_poll(dev);
170170
mt7615_mutex_release(dev);
171171

172-
return 0;
172+
return false;
173173
}
174174
EXPORT_SYMBOL_GPL(mt7663_usb_sdio_tx_status_data);
175175

0 commit comments

Comments
 (0)