diff options
author | Luis R. Rodriguez <lrodriguez@atheros.com> | 2009-11-04 19:34:33 -0500 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2009-11-11 17:09:08 -0500 |
commit | 1e875e9f16e3138d0e23cbf806a6d9520b622db2 (patch) | |
tree | 6957e6c42c0bbc16f0bb9d7f689c9c0c8da3fbb1 /drivers/net | |
parent | 2c74aa4d73dbed2e879e7eb5ee9de95d40e5298d (diff) |
ath9k: rename ath_rx_prepare() to ath9k_rx_skb_preprocess()
And change the return value to something more obvious.
Signed-off-by: Luis R. Rodriguez <lrodriguez@atheros.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net')
-rw-r--r-- | drivers/net/wireless/ath/ath9k/recv.c | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/drivers/net/wireless/ath/ath9k/recv.c b/drivers/net/wireless/ath/ath9k/recv.c index 16ed9292c805..c4a8663af3ff 100644 --- a/drivers/net/wireless/ath/ath9k/recv.c +++ b/drivers/net/wireless/ath/ath9k/recv.c | |||
@@ -288,16 +288,17 @@ static void ath9k_process_rssi(struct ath_common *common, | |||
288 | * up the frame up to let mac80211 handle the actual error case, be it no | 288 | * up the frame up to let mac80211 handle the actual error case, be it no |
289 | * decryption key or real decryption error. This let us keep statistics there. | 289 | * decryption key or real decryption error. This let us keep statistics there. |
290 | */ | 290 | */ |
291 | static int ath_rx_prepare(struct ath_common *common, | 291 | static int ath9k_rx_skb_preprocess(struct ath_common *common, |
292 | struct ieee80211_hw *hw, | 292 | struct ieee80211_hw *hw, |
293 | struct sk_buff *skb, struct ath_rx_status *rx_stats, | 293 | struct sk_buff *skb, |
294 | struct ieee80211_rx_status *rx_status, | 294 | struct ath_rx_status *rx_stats, |
295 | bool *decrypt_error) | 295 | struct ieee80211_rx_status *rx_status, |
296 | bool *decrypt_error) | ||
296 | { | 297 | { |
297 | struct ath_hw *ah = common->ah; | 298 | struct ath_hw *ah = common->ah; |
298 | 299 | ||
299 | if (!ath9k_rx_accept(common, skb, rx_status, rx_stats, decrypt_error)) | 300 | if (!ath9k_rx_accept(common, skb, rx_status, rx_stats, decrypt_error)) |
300 | goto rx_next; | 301 | return -EINVAL; |
301 | 302 | ||
302 | ath9k_process_rssi(common, hw, skb, rx_stats); | 303 | ath9k_process_rssi(common, hw, skb, rx_stats); |
303 | 304 | ||
@@ -312,8 +313,6 @@ static int ath_rx_prepare(struct ath_common *common, | |||
312 | rx_status->qual = ath9k_compute_qual(hw, rx_stats); | 313 | rx_status->qual = ath9k_compute_qual(hw, rx_stats); |
313 | rx_status->flag |= RX_FLAG_TSFT; | 314 | rx_status->flag |= RX_FLAG_TSFT; |
314 | 315 | ||
315 | return 1; | ||
316 | rx_next: | ||
317 | return 0; | 316 | return 0; |
318 | } | 317 | } |
319 | 318 | ||
@@ -808,8 +807,9 @@ int ath_rx_tasklet(struct ath_softc *sc, int flush) | |||
808 | if (flush) | 807 | if (flush) |
809 | goto requeue; | 808 | goto requeue; |
810 | 809 | ||
811 | if (!ath_rx_prepare(common, hw, skb, rx_stats, | 810 | retval = ath9k_rx_skb_preprocess(common, hw, skb, rx_stats, |
812 | rxs, &decrypt_error)) | 811 | rxs, &decrypt_error); |
812 | if (retval) | ||
813 | goto requeue; | 813 | goto requeue; |
814 | 814 | ||
815 | /* Ensure we always have an skb to requeue once we are done | 815 | /* Ensure we always have an skb to requeue once we are done |