diff options
author | Oleksij Rempel <linux@rempel-privat.de> | 2014-11-06 10:53:27 +0300 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2014-11-12 00:31:14 +0300 |
commit | ef948da55f20edbb68dac427b7e067c805c852f5 (patch) | |
tree | 9bf265b03187c8fcf6bacffab2fda207305c5501 /drivers/net/wireless/ath/ath9k/channel.c | |
parent | 934bdc73dd3029c1b91e1a3538268b4afccd58cf (diff) | |
download | linux-ef948da55f20edbb68dac427b7e067c805c852f5.tar.xz |
ath9k: use ath_common instead of ieee80211_hw in ath9k_spectral_scan_
we don't have here any ieee80211_hw dependencies any way.
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/channel.c')
-rw-r--r-- | drivers/net/wireless/ath/ath9k/channel.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/wireless/ath/ath9k/channel.c b/drivers/net/wireless/ath/ath9k/channel.c index 25a21fa389ff..814178ad36a7 100644 --- a/drivers/net/wireless/ath/ath9k/channel.c +++ b/drivers/net/wireless/ath/ath9k/channel.c @@ -93,7 +93,7 @@ static int ath_set_channel(struct ath_softc *sc) /* perform spectral scan if requested. */ if (test_bit(ATH_OP_SCANNING, &common->op_flags) && sc->spec_priv.spectral_mode == SPECTRAL_CHANSCAN) - ath9k_spectral_scan_trigger(hw); + ath9k_spectral_scan_trigger(common); } return 0; |