mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-05 14:07:30 +02:00
24 lines
902 B
Diff
24 lines
902 B
Diff
|
--- a/drivers/net/wireless/ath/ath9k/xmit.c
|
||
|
+++ b/drivers/net/wireless/ath/ath9k/xmit.c
|
||
|
@@ -728,7 +728,9 @@ static int ath_compute_num_delims(struct
|
||
|
* Add delimiter when using RTS/CTS with aggregation
|
||
|
* and non enterprise AR9003 card
|
||
|
*/
|
||
|
- if (first_subfrm)
|
||
|
+ if (first_subfrm && (sc->sc_ah->caps.hw_caps & ATH9K_HW_CAP_EDMA) &&
|
||
|
+ !AR_SREV_9580_10_OR_LATER(sc->sc_ah) &&
|
||
|
+ (sc->sc_ah->ent_mode & AR_ENT_OTP_MIN_PKT_SIZE_DISABLE))
|
||
|
ndelim = max(ndelim, FIRST_DESC_NDELIMS);
|
||
|
|
||
|
/*
|
||
|
--- a/drivers/net/wireless/ath/ath9k/reg.h
|
||
|
+++ b/drivers/net/wireless/ath/ath9k/reg.h
|
||
|
@@ -1132,6 +1132,7 @@ enum {
|
||
|
#define AR_INTR_PRIO_ASYNC_ENABLE (AR_SREV_9340(ah) ? 0x4094 : 0x40d4)
|
||
|
#define AR_ENT_OTP 0x40d8
|
||
|
#define AR_ENT_OTP_CHAIN2_DISABLE 0x00020000
|
||
|
+#define AR_ENT_OTP_MIN_PKT_SIZE_DISABLE 0x00800000
|
||
|
#define AR_ENT_OTP_MPSD 0x00800000
|
||
|
|
||
|
#define AR_CH0_BB_DPLL1 0x16180
|