diff options
author | Rusty Russell <rusty@rustcorp.com.au> | 2011-12-19 08:56:45 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2011-12-19 22:27:29 -0500 |
commit | 3db1cd5c05f35fb43eb134df6f321de4e63141f2 (patch) | |
tree | 960039f3f4f0a524b37e94434624da154859bc64 /drivers/net/wireless/b43/phy_n.c | |
parent | a8e510f682fe6d7671c11887e07c55f86caaf3c1 (diff) |
net: fix assignment of 0/1 to bool variables.
DaveM said:
Please, this kind of stuff rots forever and not using bool properly
drives me crazy.
Joe Perches <joe@perches.com> gave me the spatch script:
@@
bool b;
@@
-b = 0
+b = false
@@
bool b;
@@
-b = 1
+b = true
I merely installed coccinelle, read the documentation and took credit.
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/wireless/b43/phy_n.c')
-rw-r--r-- | drivers/net/wireless/b43/phy_n.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/wireless/b43/phy_n.c b/drivers/net/wireless/b43/phy_n.c index c8fa2cd97e64..f1a7e5890adc 100644 --- a/drivers/net/wireless/b43/phy_n.c +++ b/drivers/net/wireless/b43/phy_n.c | |||
@@ -3375,7 +3375,7 @@ static int b43_nphy_cal_tx_iq_lo(struct b43_wldev *dev, | |||
3375 | 3375 | ||
3376 | if (dev->phy.rev >= 4) { | 3376 | if (dev->phy.rev >= 4) { |
3377 | avoid = nphy->hang_avoid; | 3377 | avoid = nphy->hang_avoid; |
3378 | nphy->hang_avoid = 0; | 3378 | nphy->hang_avoid = false; |
3379 | } | 3379 | } |
3380 | 3380 | ||
3381 | b43_ntab_read_bulk(dev, B43_NTAB16(7, 0x110), 2, save); | 3381 | b43_ntab_read_bulk(dev, B43_NTAB16(7, 0x110), 2, save); |
@@ -3485,7 +3485,7 @@ static int b43_nphy_cal_tx_iq_lo(struct b43_wldev *dev, | |||
3485 | 3485 | ||
3486 | if (phy6or5x && updated[core] == 0) { | 3486 | if (phy6or5x && updated[core] == 0) { |
3487 | b43_nphy_update_tx_cal_ladder(dev, core); | 3487 | b43_nphy_update_tx_cal_ladder(dev, core); |
3488 | updated[core] = 1; | 3488 | updated[core] = true; |
3489 | } | 3489 | } |
3490 | 3490 | ||
3491 | tmp = (params[core].ncorr[type] << 8) | 0x66; | 3491 | tmp = (params[core].ncorr[type] << 8) | 0x66; |