diff options
author | Oleksij Rempel <linux@rempel-privat.de> | 2014-11-06 08:53:30 +0100 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2014-11-11 16:31:14 -0500 |
commit | 67dc74f15f147b9f88702de2952d2951e3e000ec (patch) | |
tree | 1a4e858c71e5c4de0dfe4a6a3ceeedd3128468b1 /drivers/net/wireless/ath/ath9k/recv.c | |
parent | f00a422cc81ef665f5098c0bc43cb0c616e55a9b (diff) | |
download | talos-op-linux-67dc74f15f147b9f88702de2952d2951e3e000ec.tar.gz talos-op-linux-67dc74f15f147b9f88702de2952d2951e3e000ec.zip |
ath9k: move spectral.* to common-spectral.*
and rename exports from ath9k_spectral_* to ath9k_cmn_spectral_*
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/recv.c')
-rw-r--r-- | drivers/net/wireless/ath/ath9k/recv.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/wireless/ath/ath9k/recv.c b/drivers/net/wireless/ath/ath9k/recv.c index e97c6936da0f..7395afbc5124 100644 --- a/drivers/net/wireless/ath/ath9k/recv.c +++ b/drivers/net/wireless/ath/ath9k/recv.c @@ -870,7 +870,7 @@ static int ath9k_rx_skb_preprocess(struct ath_softc *sc, */ if (rx_stats->rs_status & ATH9K_RXERR_PHY) { ath9k_dfs_process_phyerr(sc, hdr, rx_stats, rx_status->mactime); - if (ath_process_fft(&sc->spec_priv, hdr, rx_stats, rx_status->mactime)) + if (ath_cmn_process_fft(&sc->spec_priv, hdr, rx_stats, rx_status->mactime)) RX_STAT_INC(rx_spectral); return -EINVAL; |