Commit 1a2b250b authored by Zhao, Gang's avatar Zhao, Gang Committed by John W. Linville

b43: return true / false instead of numbers in functions which return bool value

Signed-off-by: default avatarZhao, Gang <gamerh2o@gmail.com>
Signed-off-by: default avatarJohn W. Linville <linville@tuxdriver.com>
parent cc1ad9d2
...@@ -86,7 +86,7 @@ void b43_debugfs_log_txstat(struct b43_wldev *dev, ...@@ -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) static inline bool b43_debug(struct b43_wldev *dev, enum b43_dyndbg feature)
{ {
return 0; return false;
} }
static inline void b43_debugfs_init(void) static inline void b43_debugfs_init(void)
......
...@@ -133,9 +133,9 @@ void b43_phy_exit(struct b43_wldev *dev) ...@@ -133,9 +133,9 @@ void b43_phy_exit(struct b43_wldev *dev)
bool b43_has_hardware_pctl(struct b43_wldev *dev) bool b43_has_hardware_pctl(struct b43_wldev *dev)
{ {
if (!dev->phy.hardware_power_control) if (!dev->phy.hardware_power_control)
return 0; return false;
if (!dev->phy.ops->supports_hwpctl) if (!dev->phy.ops->supports_hwpctl)
return 0; return false;
return dev->phy.ops->supports_hwpctl(dev); return dev->phy.ops->supports_hwpctl(dev);
} }
......
...@@ -637,7 +637,7 @@ static bool pio_rx_frame(struct b43_pio_rxqueue *q) ...@@ -637,7 +637,7 @@ static bool pio_rx_frame(struct b43_pio_rxqueue *q)
ctl = b43_piorx_read32(q, B43_PIO8_RXCTL); ctl = b43_piorx_read32(q, B43_PIO8_RXCTL);
if (!(ctl & B43_PIO8_RXCTL_FRAMERDY)) if (!(ctl & B43_PIO8_RXCTL_FRAMERDY))
return 0; return false;
b43_piorx_write32(q, B43_PIO8_RXCTL, b43_piorx_write32(q, B43_PIO8_RXCTL,
B43_PIO8_RXCTL_FRAMERDY); B43_PIO8_RXCTL_FRAMERDY);
for (i = 0; i < 10; i++) { for (i = 0; i < 10; i++) {
...@@ -651,7 +651,7 @@ static bool pio_rx_frame(struct b43_pio_rxqueue *q) ...@@ -651,7 +651,7 @@ static bool pio_rx_frame(struct b43_pio_rxqueue *q)
ctl = b43_piorx_read16(q, B43_PIO_RXCTL); ctl = b43_piorx_read16(q, B43_PIO_RXCTL);
if (!(ctl & B43_PIO_RXCTL_FRAMERDY)) if (!(ctl & B43_PIO_RXCTL_FRAMERDY))
return 0; return false;
b43_piorx_write16(q, B43_PIO_RXCTL, b43_piorx_write16(q, B43_PIO_RXCTL,
B43_PIO_RXCTL_FRAMERDY); B43_PIO_RXCTL_FRAMERDY);
for (i = 0; i < 10; i++) { for (i = 0; i < 10; i++) {
...@@ -662,7 +662,7 @@ static bool pio_rx_frame(struct b43_pio_rxqueue *q) ...@@ -662,7 +662,7 @@ static bool pio_rx_frame(struct b43_pio_rxqueue *q)
} }
} }
b43dbg(q->dev->wl, "PIO RX timed out\n"); b43dbg(q->dev->wl, "PIO RX timed out\n");
return 1; return true;
data_ready: data_ready:
/* Get the preamble (RX header) */ /* Get the preamble (RX header) */
...@@ -759,7 +759,7 @@ static bool pio_rx_frame(struct b43_pio_rxqueue *q) ...@@ -759,7 +759,7 @@ static bool pio_rx_frame(struct b43_pio_rxqueue *q)
b43_rx(q->dev, skb, rxhdr); b43_rx(q->dev, skb, rxhdr);
return 1; return true;
rx_error: rx_error:
if (err_msg) if (err_msg)
...@@ -769,7 +769,7 @@ static bool pio_rx_frame(struct b43_pio_rxqueue *q) ...@@ -769,7 +769,7 @@ static bool pio_rx_frame(struct b43_pio_rxqueue *q)
else else
b43_piorx_write16(q, B43_PIO_RXCTL, B43_PIO_RXCTL_DATARDY); b43_piorx_write16(q, B43_PIO_RXCTL, B43_PIO_RXCTL_DATARDY);
return 1; return true;
} }
void b43_pio_rx(struct b43_pio_rxqueue *q) void b43_pio_rx(struct b43_pio_rxqueue *q)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment