summaryrefslogtreecommitdiff
path: root/drivers/net/wireless/ath/ath9k/main.c
diff options
context:
space:
mode:
authorOleksij Rempel <linux@rempel-privat.de>2014-11-06 07:53:20 (GMT)
committerJohn W. Linville <linville@tuxdriver.com>2014-11-11 21:31:13 (GMT)
commit21af25d00b8bdf03a899b316d41d31ac3eafaf78 (patch)
tree3395ed26b7035cce21520a8793e5cf4001c4a1e0 /drivers/net/wireless/ath/ath9k/main.c
parent8391f60194bd0d9ab489105381df6455afe1f39a (diff)
downloadlinux-21af25d00b8bdf03a899b316d41d31ac3eafaf78.tar.xz
ath9k: move spec_config to ath_spec_scan_priv
Signed-off-by: Oleksij Rempel <linux@rempel-privat.de> Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/ath/ath9k/main.c')
-rw-r--r--drivers/net/wireless/ath/ath9k/main.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/drivers/net/wireless/ath/ath9k/main.c b/drivers/net/wireless/ath/ath9k/main.c
index c074658..f9641ee 100644
--- a/drivers/net/wireless/ath/ath9k/main.c
+++ b/drivers/net/wireless/ath/ath9k/main.c
@@ -1382,26 +1382,26 @@ int ath9k_spectral_scan_config(struct ieee80211_hw *hw,
switch (spectral_mode) {
case SPECTRAL_DISABLED:
- sc->spec_config.enabled = 0;
+ sc->spec_priv.spec_config.enabled = 0;
break;
case SPECTRAL_BACKGROUND:
/* send endless samples.
* TODO: is this really useful for "background"?
*/
- sc->spec_config.endless = 1;
- sc->spec_config.enabled = 1;
+ sc->spec_priv.spec_config.endless = 1;
+ sc->spec_priv.spec_config.enabled = 1;
break;
case SPECTRAL_CHANSCAN:
case SPECTRAL_MANUAL:
- sc->spec_config.endless = 0;
- sc->spec_config.enabled = 1;
+ sc->spec_priv.spec_config.endless = 0;
+ sc->spec_priv.spec_config.enabled = 1;
break;
default:
return -1;
}
ath9k_ps_wakeup(sc);
- ath9k_hw_ops(ah)->spectral_scan_config(ah, &sc->spec_config);
+ ath9k_hw_ops(ah)->spectral_scan_config(ah, &sc->spec_priv.spec_config);
ath9k_ps_restore(sc);
sc->spec_priv.spectral_mode = spectral_mode;