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>
This commit is contained in:

committed by
David S. Miller

parent
1a0d6ae579
commit
23677ce317
@@ -24,7 +24,7 @@
|
||||
static inline void ath9k_hw_configpcipowersave(struct ath_hw *ah,
|
||||
bool power_off)
|
||||
{
|
||||
if (ah->aspm_enabled != true)
|
||||
if (!ah->aspm_enabled)
|
||||
return;
|
||||
|
||||
ath9k_hw_ops(ah)->config_pci_powersave(ah, power_off);
|
||||
|
Reference in New Issue
Block a user