Browse Source

iwlwifi: pcie: don't increment / decrement a bool

David reported that the code I added uses the decrement
and increment operator on a boolean variable.

Fix that.

Fixes: 0cd58eaab148 ("iwlwifi: pcie: allow the op_mode to block the tx queues")
Reported-by: David Binderman <dcb314@hotmail.com>
Signed-off-by: Emmanuel Grumbach <emmanuel.grumbach@intel.com>
Signed-off-by: Luca Coelho <luciano.coelho@intel.com>
Emmanuel Grumbach 8 years ago
parent
commit
04fa3e680b
1 changed files with 1 additions and 1 deletions
  1. 1 1
      drivers/net/wireless/intel/iwlwifi/pcie/internal.h

+ 1 - 1
drivers/net/wireless/intel/iwlwifi/pcie/internal.h

@@ -279,7 +279,7 @@ struct iwl_txq {
 	bool frozen;
 	bool frozen;
 	u8 active;
 	u8 active;
 	bool ampdu;
 	bool ampdu;
-	bool block;
+	int block;
 	unsigned long wd_timeout;
 	unsigned long wd_timeout;
 	struct sk_buff_head overflow_q;
 	struct sk_buff_head overflow_q;