diff options
author | Felix Fietkau <nbd@openwrt.org> | 2010-03-10 01:17:23 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2010-03-10 01:17:23 +0000 |
commit | 656de42f9ceee8f3c31af1001dac8558c91c7510 (patch) | |
tree | c6c45fe6fa60458959b9b068f1a65782324bff9d /package/mac80211/patches/560-minstrel_ht.patch | |
parent | 3f733bc1ecd5b213e3b9078c9cb057a0ae6842d9 (diff) | |
download | upstream-656de42f9ceee8f3c31af1001dac8558c91c7510.tar.gz upstream-656de42f9ceee8f3c31af1001dac8558c91c7510.tar.bz2 upstream-656de42f9ceee8f3c31af1001dac8558c91c7510.zip |
Revert "mac80211/ath9k: fix duration calculation for short-guard-interval frames (thanks to Duy Nguyen for pointing this out)" again It appears to be causing trouble at least with some clients.
SVN-Revision: 20115
Diffstat (limited to 'package/mac80211/patches/560-minstrel_ht.patch')
-rw-r--r-- | package/mac80211/patches/560-minstrel_ht.patch | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/mac80211/patches/560-minstrel_ht.patch b/package/mac80211/patches/560-minstrel_ht.patch index 2f2aa9d398..6c3d08eac2 100644 --- a/package/mac80211/patches/560-minstrel_ht.patch +++ b/package/mac80211/patches/560-minstrel_ht.patch @@ -100,7 +100,7 @@ +/* Transmission time for a packet containing (syms) symbols */ +#define MCS_SYMBOL_TIME(sgi, syms) \ + (sgi ? \ -+ ((syms) * 18 + 4) / 6 : /* syms * 3.6 us */ \ ++ ((syms) * 18 + 4) / 5 : /* syms * 3.6 us */ \ + (syms) << 2 /* syms * 4 us */ \ + ) + |