1
0
mirror of https://git.openwrt.org/openwrt/openwrt.git synced 2024-09-30 08:01:25 +02:00

ath9k: reduce allocation size, common->cachelz is already added to the buffer size elsewhere

SVN-Revision: 25205
This commit is contained in:
Felix Fietkau 2011-01-28 16:58:08 +00:00
parent 0a54236bea
commit 04628c88d4

@ -30,7 +30,7 @@
sc->sc_flags &= ~SC_OP_RXFLUSH;
spin_lock_init(&sc->rx.rxbuflock);
+ common->rx_bufsize = IEEE80211_MAX_MPDU_LEN / 2 + common->cachelsz +
+ common->rx_bufsize = IEEE80211_MAX_MPDU_LEN / 2 +
+ sc->sc_ah->caps.rx_status_len;
+
if (sc->sc_ah->caps.hw_caps & ATH9K_HW_CAP_EDMA) {