diff options
author | Oleksij Rempel <linux@rempel-privat.de> | 2014-02-04 13:27:41 +0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2014-02-13 00:35:57 +0400 |
commit | 6438696efa8163faa74f16005df7e603d6835933 (patch) | |
tree | b33092a6bb4637dddf0ebca1c0f6ad66720b8d5d /drivers/net/wireless/ath/ath9k/common.h | |
parent | 1274603646a82c62776680db85446f767beb9694 (diff) | |
download | linux-6438696efa8163faa74f16005df7e603d6835933.tar.xz |
ath9k: move ath9k_rx_accept to common.c
we can reuse it on ath9k_htc
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/common.h')
-rw-r--r-- | drivers/net/wireless/ath/ath9k/common.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/drivers/net/wireless/ath/ath9k/common.h b/drivers/net/wireless/ath/ath9k/common.h index 729482f4c35d..c59d3f5db2c3 100644 --- a/drivers/net/wireless/ath/ath9k/common.h +++ b/drivers/net/wireless/ath/ath9k/common.h @@ -42,6 +42,12 @@ #define ATH_EP_RND(x, mul) \ (((x) + ((mul)/2)) / (mul)) +bool ath9k_cmn_rx_accept(struct ath_common *common, + struct ieee80211_hdr *hdr, + struct ieee80211_rx_status *rxs, + struct ath_rx_status *rx_stats, + bool *decrypt_error, + unsigned int rxfilter); int ath9k_cmn_process_rate(struct ath_common *common, struct ieee80211_hw *hw, struct ath_rx_status *rx_stats, |