diff options
author | Sujith <Sujith.Manoharan@atheros.com> | 2008-08-14 03:58:20 -0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2008-08-29 16:24:05 -0400 |
commit | 19b73c7f68fb2eeb180eafa70f9859409ec9aa08 (patch) | |
tree | 793628c5efb70056e2abca1bac97587e244e8749 /drivers/net/wireless/ath9k/recv.c | |
parent | 60653678939dcbba3aa936250b58179aa3451eee (diff) |
ath9k: Add IEEE80211_HW_RX_INCLUDES_FCS to hw flags
Don't trim the FCS before passing the frame to mac80211,
move TSF_TO_TU to core.h and delete more unused macros.
Signed-off-by: Sujith Manoharan <Sujith.Manoharan@atheros.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/ath9k/recv.c')
-rw-r--r-- | drivers/net/wireless/ath9k/recv.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/wireless/ath9k/recv.c b/drivers/net/wireless/ath9k/recv.c index 91f635411ab5..6e13c638cc0b 100644 --- a/drivers/net/wireless/ath9k/recv.c +++ b/drivers/net/wireless/ath9k/recv.c | |||
@@ -448,7 +448,7 @@ static int ath_rx_indicate(struct ath_softc *sc, | |||
448 | int type; | 448 | int type; |
449 | 449 | ||
450 | /* indicate frame to the stack, which will free the old skb. */ | 450 | /* indicate frame to the stack, which will free the old skb. */ |
451 | type = ath__rx_indicate(sc, skb, status, keyix); | 451 | type = _ath_rx_indicate(sc, skb, status, keyix); |
452 | 452 | ||
453 | /* allocate a new skb and queue it to for H/W processing */ | 453 | /* allocate a new skb and queue it to for H/W processing */ |
454 | nskb = ath_rxbuf_alloc(sc, sc->sc_rxbufsize); | 454 | nskb = ath_rxbuf_alloc(sc, sc->sc_rxbufsize); |