1 Nov 05:37
[PATCH 3/7] ath5k: Clean up ath5k rate duration settings
Replace ath5k's rate duration computations for one using mac80211's internals. Another consideration here is to simply remove these and put them into initval values. They seem to be static values based only on mode. We can do this later though once we can physically confirm by trial and error these are indeed just used for ACK timeout. The next puzzle is figuring out which registers are actually setting the control rates. Changes to ath5k.h, hw.c Changes-licensed-under: ISC Signed-off-by: Luis R. Rodriguez <mcgrof@...> --- drivers/net/wireless/ath5k/ath5k.h | 80 -------------- drivers/net/wireless/ath5k/hw.c | 201 ++++++++++++++---------------------- 2 files changed, 76 insertions(+), 205 deletions(-) diff --git a/drivers/net/wireless/ath5k/ath5k.h b/drivers/net/wireless/ath5k/ath5k.h index 20567b1..3354b37 100644 --- a/drivers/net/wireless/ath5k/ath5k.h +++ b/drivers/net/wireless/ath5k/ath5k.h @@ -374,86 +374,6 @@ enum ath5k_pkt_type { ) /* - * Used to compute TX times - */ -#define AR5K_CCK_SIFS_TIME 10 -#define AR5K_CCK_PREAMBLE_BITS 144 -#define AR5K_CCK_PLCP_BITS 48(Continue reading)
Nick
RSS Feed