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>
此提交包含在:
@@ -1330,7 +1330,7 @@ static int rxq_process(struct ieee80211_hw *hw, int index, int limit)
|
||||
wh->addr1);
|
||||
|
||||
if (mwl8k_vif != NULL &&
|
||||
mwl8k_vif->is_hw_crypto_enabled == true) {
|
||||
mwl8k_vif->is_hw_crypto_enabled) {
|
||||
/*
|
||||
* When MMIC ERROR is encountered
|
||||
* by the firmware, payload is
|
||||
@@ -1993,8 +1993,7 @@ mwl8k_txq_xmit(struct ieee80211_hw *hw, int index, struct sk_buff *skb)
|
||||
*/
|
||||
|
||||
if (txq->len >= MWL8K_TX_DESCS - 2) {
|
||||
if (mgmtframe == false ||
|
||||
txq->len == MWL8K_TX_DESCS) {
|
||||
if (!mgmtframe || txq->len == MWL8K_TX_DESCS) {
|
||||
if (start_ba_session) {
|
||||
spin_lock(&priv->stream_lock);
|
||||
mwl8k_remove_stream(hw, stream);
|
||||
|
新增問題並參考
封鎖使用者