]> git.openfabrics.org - ~emulex/infiniband.git/commitdiff
b43: return true / false instead of numbers in functions which return bool value
authorZhao, Gang <gamerh2o@gmail.com>
Sun, 16 Feb 2014 14:31:38 +0000 (22:31 +0800)
committerJohn W. Linville <linville@tuxdriver.com>
Mon, 24 Feb 2014 20:21:54 +0000 (15:21 -0500)
Signed-off-by: Zhao, Gang <gamerh2o@gmail.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
drivers/net/wireless/b43/debugfs.h
drivers/net/wireless/b43/phy_common.c
drivers/net/wireless/b43/pio.c

index 822aad8842f4defbe8b24af07b4f0559f53223b5..50517b801cb42d40137d2c0739440220ce8e2151 100644 (file)
@@ -86,7 +86,7 @@ void b43_debugfs_log_txstat(struct b43_wldev *dev,
 
 static inline bool b43_debug(struct b43_wldev *dev, enum b43_dyndbg feature)
 {
-       return 0;
+       return false;
 }
 
 static inline void b43_debugfs_init(void)
index f01676ac481b25071e9f7aae9ad790dbd5836ff0..dbaa51890198945b7552ed506bc3c8bfe4ba2359 100644 (file)
@@ -133,9 +133,9 @@ void b43_phy_exit(struct b43_wldev *dev)
 bool b43_has_hardware_pctl(struct b43_wldev *dev)
 {
        if (!dev->phy.hardware_power_control)
-               return 0;
+               return false;
        if (!dev->phy.ops->supports_hwpctl)
-               return 0;
+               return false;
        return dev->phy.ops->supports_hwpctl(dev);
 }
 
index a73ff8c9deb55ff320f5e3ba46ac6b0fc8dabef1..a4ff5e2a42b95da1fedc6c64f1ef3ac8042afb5b 100644 (file)
@@ -637,7 +637,7 @@ static bool pio_rx_frame(struct b43_pio_rxqueue *q)
 
                ctl = b43_piorx_read32(q, B43_PIO8_RXCTL);
                if (!(ctl & B43_PIO8_RXCTL_FRAMERDY))
-                       return 0;
+                       return false;
                b43_piorx_write32(q, B43_PIO8_RXCTL,
                                  B43_PIO8_RXCTL_FRAMERDY);
                for (i = 0; i < 10; i++) {
@@ -651,7 +651,7 @@ static bool pio_rx_frame(struct b43_pio_rxqueue *q)
 
                ctl = b43_piorx_read16(q, B43_PIO_RXCTL);
                if (!(ctl & B43_PIO_RXCTL_FRAMERDY))
-                       return 0;
+                       return false;
                b43_piorx_write16(q, B43_PIO_RXCTL,
                                  B43_PIO_RXCTL_FRAMERDY);
                for (i = 0; i < 10; i++) {
@@ -662,7 +662,7 @@ static bool pio_rx_frame(struct b43_pio_rxqueue *q)
                }
        }
        b43dbg(q->dev->wl, "PIO RX timed out\n");
-       return 1;
+       return true;
 data_ready:
 
        /* Get the preamble (RX header) */
@@ -759,7 +759,7 @@ data_ready:
 
        b43_rx(q->dev, skb, rxhdr);
 
-       return 1;
+       return true;
 
 rx_error:
        if (err_msg)
@@ -769,7 +769,7 @@ rx_error:
        else
                b43_piorx_write16(q, B43_PIO_RXCTL, B43_PIO_RXCTL_DATARDY);
 
-       return 1;
+       return true;
 }
 
 void b43_pio_rx(struct b43_pio_rxqueue *q)