linux/drivers/net/wireless/brcm80211
Joe Perches 23677ce317 drivers/net: Remove boolean comparisons to true/false
Booleans should not be compared to true or false
but be directly tested or tested with !.

Done via cocci script:

@@
bool t;
@@
- t == true
+ t
@@
bool t;
@@
- t != true
+ !t
@@
bool t;
@@
- t == false
+ !t
@@
bool t;
@@
- t != false
+ t

Signed-off-by: Joe Perches <joe@perches.com>
Reviewed-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2012-02-13 00:47:40 -05:00
..
brcmfmac drivers/net: Remove boolean comparisons to true/false 2012-02-13 00:47:40 -05:00
brcmsmac drivers/net: Remove boolean comparisons to true/false 2012-02-13 00:47:40 -05:00
brcmutil brcm80211: Use pr_fmt and pr_<level> 2012-01-24 14:21:14 -05:00
include brcm80211: Add and use brcmX_dbg_dump_hex 2012-01-24 14:21:13 -05:00
Kconfig brcm80211: fmac: add Kconfig option for SDIO bus support 2011-12-19 14:40:48 -05:00
Makefile brcm80211: Use normal DEBUG define 2012-01-24 14:21:13 -05:00