diff options
author | Stanislaw Gruszka <sgruszka@redhat.com> | 2010-10-25 04:34:50 -0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2010-11-15 13:24:22 -0500 |
commit | 4beeba7dc59cc10d6a47346c857d1a64a9ec9642 (patch) | |
tree | 41c4c1fb9cc2c65840f3b0beb4ef9ce329817133 /drivers/net/wireless/iwlwifi/iwl-4965.c | |
parent | c7317e41df30c7e04dca46360e5ebb0cb36dda45 (diff) |
iwlwifi: warn when send tx power settings during scan
Add WARN_ONCE when scanning is pending. Use STATUS_SCAN_HW bit since we
can have scan canceled or completed but STATUS_SCANNING bit still set.
v1 -> v2: replace EIO to EAGAIN
Signed-off-by: Stanislaw Gruszka <sgruszka@redhat.com>
Acked-off-by: Wey-Yi Guy <wey-yi.w.guy@intel.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/iwlwifi/iwl-4965.c')
-rw-r--r-- | drivers/net/wireless/iwlwifi/iwl-4965.c | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/drivers/net/wireless/iwlwifi/iwl-4965.c b/drivers/net/wireless/iwlwifi/iwl-4965.c index b207e3e9299f..ee9c582c8cf2 100644 --- a/drivers/net/wireless/iwlwifi/iwl-4965.c +++ b/drivers/net/wireless/iwlwifi/iwl-4965.c | |||
@@ -1377,13 +1377,9 @@ static int iwl4965_send_tx_power(struct iwl_priv *priv) | |||
1377 | u8 ctrl_chan_high = 0; | 1377 | u8 ctrl_chan_high = 0; |
1378 | struct iwl_rxon_context *ctx = &priv->contexts[IWL_RXON_CTX_BSS]; | 1378 | struct iwl_rxon_context *ctx = &priv->contexts[IWL_RXON_CTX_BSS]; |
1379 | 1379 | ||
1380 | if (test_bit(STATUS_SCANNING, &priv->status)) { | 1380 | if (WARN_ONCE(test_bit(STATUS_SCAN_HW, &priv->status), |
1381 | /* If this gets hit a lot, switch it to a BUG() and catch | 1381 | "TX Power requested while scanning!\n")) |
1382 | * the stack trace to find out who is calling this during | ||
1383 | * a scan. */ | ||
1384 | IWL_WARN(priv, "TX Power requested while scanning!\n"); | ||
1385 | return -EAGAIN; | 1382 | return -EAGAIN; |
1386 | } | ||
1387 | 1383 | ||
1388 | band = priv->band == IEEE80211_BAND_2GHZ; | 1384 | band = priv->band == IEEE80211_BAND_2GHZ; |
1389 | 1385 | ||