linux-kernel-test/drivers/net/ethernet/intel/ixgb
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
..
ixgb_ee.c drivers/net: Remove boolean comparisons to true/false 2012-02-13 00:47:40 -05:00
ixgb_ee.h ixgb: eliminate checkstack warnings 2011-09-23 13:55:25 -04:00
ixgb_ethtool.c Sweep away N/A fw_version dustbunnies from the .get_drvinfo routine of a number of drivers 2011-11-22 16:43:32 -05:00
ixgb_hw.c ixgb: eliminate checkstack warnings 2011-09-23 13:55:25 -04:00
ixgb_hw.h ixgb: eliminate checkstack warnings 2011-09-23 13:55:25 -04:00
ixgb_ids.h
ixgb_main.c drivers/net: Remove unnecessary k.alloc/v.alloc OOM messages 2012-01-31 16:20:21 -05:00
ixgb_osdep.h ixgb: eliminate checkstack warnings 2011-09-23 13:55:25 -04:00
ixgb_param.c ixgb: eliminate checkstack warnings 2011-09-23 13:55:25 -04:00
ixgb.h ixgb: convert to ndo_fix_features 2011-09-16 18:26:37 -07:00
Makefile