wifi: rt2x00: Simplify bool conversion
authorYang Li <yang.lee@linux.alibaba.com>
Wed, 15 Nov 2023 01:00:17 +0000 (09:00 +0800)
committerKalle Valo <kvalo@kernel.org>
Thu, 30 Nov 2023 19:16:37 +0000 (21:16 +0200)
./drivers/net/wireless/ralink/rt2x00/rt2800lib.c:1331:47-52: WARNING: conversion to bool not needed here
./drivers/net/wireless/ralink/rt2x00/rt2800lib.c:1332:47-52: WARNING: conversion to bool not needed here

Reported-by: Abaci Robot <abaci@linux.alibaba.com>
Closes: https://bugzilla.openanolis.cn/show_bug.cgi?id=7531
Signed-off-by: Yang Li <yang.lee@linux.alibaba.com>
Signed-off-by: Kalle Valo <kvalo@kernel.org>
Link: https://lore.kernel.org/r/20231115010017.112081-1-yang.lee@linux.alibaba.com
drivers/net/wireless/ralink/rt2x00/rt2800lib.c

index 84b218adbaaf1917043ae1b573b2b54fdb35dc01..485096e3be9419169022fb384a7607b3ff702895 100644 (file)
@@ -1328,8 +1328,8 @@ static bool rt2800_watchdog_dma_busy(struct rt2x00_dev *rt2x00dev)
        else
                rt2x00dev->txdma_busy = 0;
 
-       busy_rx = rt2x00dev->rxdma_busy > 30 ? true : false;
-       busy_tx = rt2x00dev->txdma_busy > 30 ? true : false;
+       busy_rx = rt2x00dev->rxdma_busy > 30;
+       busy_tx = rt2x00dev->txdma_busy > 30;
 
        if (!busy_rx && !busy_tx)
                return false;