mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2025-01-22 14:39:19 +07:00
b43: main: Fix use true/false for bool type
use true/false on bool type variable assignment. Signed-off-by: Saurav Girepunje <saurav.girepunje@gmail.com> Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
This commit is contained in:
parent
cbbd7f9a5e
commit
6db774c172
@ -3600,7 +3600,7 @@ static void b43_tx_work(struct work_struct *work)
|
||||
else
|
||||
err = b43_dma_tx(dev, skb);
|
||||
if (err == -ENOSPC) {
|
||||
wl->tx_queue_stopped[queue_num] = 1;
|
||||
wl->tx_queue_stopped[queue_num] = true;
|
||||
ieee80211_stop_queue(wl->hw, queue_num);
|
||||
skb_queue_head(&wl->tx_queue[queue_num], skb);
|
||||
break;
|
||||
@ -3611,7 +3611,7 @@ static void b43_tx_work(struct work_struct *work)
|
||||
}
|
||||
|
||||
if (!err)
|
||||
wl->tx_queue_stopped[queue_num] = 0;
|
||||
wl->tx_queue_stopped[queue_num] = false;
|
||||
}
|
||||
|
||||
#if B43_DEBUG
|
||||
@ -5603,7 +5603,7 @@ static struct b43_wl *b43_wireless_init(struct b43_bus_dev *dev)
|
||||
/* Initialize queues and flags. */
|
||||
for (queue_num = 0; queue_num < B43_QOS_QUEUE_NUM; queue_num++) {
|
||||
skb_queue_head_init(&wl->tx_queue[queue_num]);
|
||||
wl->tx_queue_stopped[queue_num] = 0;
|
||||
wl->tx_queue_stopped[queue_num] = false;
|
||||
}
|
||||
|
||||
snprintf(chip_name, ARRAY_SIZE(chip_name),
|
||||
|
Loading…
Reference in New Issue
Block a user