diff options
author | Felix Fietkau <nbd@openwrt.org> | 2012-07-10 00:21:25 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2012-07-10 00:21:25 +0000 |
commit | b718813b57964dacdaf30a645cab112760ef1d23 (patch) | |
tree | 894a9e3fd09b247b6702594fffd3d65f520d0148 /package/mac80211/patches/581-ath9k-fix-antenna-control-configuration-for-AR9550.patch | |
parent | 178df184a1ce23f024d50aa3205e17974d2047e1 (diff) | |
download | upstream-b718813b57964dacdaf30a645cab112760ef1d23.tar.gz upstream-b718813b57964dacdaf30a645cab112760ef1d23.tar.bz2 upstream-b718813b57964dacdaf30a645cab112760ef1d23.zip |
mac80211: update to latest version, fix tx gain patch
SVN-Revision: 32655
Diffstat (limited to 'package/mac80211/patches/581-ath9k-fix-antenna-control-configuration-for-AR9550.patch')
-rw-r--r-- | package/mac80211/patches/581-ath9k-fix-antenna-control-configuration-for-AR9550.patch | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/package/mac80211/patches/581-ath9k-fix-antenna-control-configuration-for-AR9550.patch b/package/mac80211/patches/581-ath9k-fix-antenna-control-configuration-for-AR9550.patch deleted file mode 100644 index 324e3a0a9b..0000000000 --- a/package/mac80211/patches/581-ath9k-fix-antenna-control-configuration-for-AR9550.patch +++ /dev/null @@ -1,35 +0,0 @@ -From 48032d5c88c936fc84a2d676474c5fe714d8ef94 Mon Sep 17 00:00:00 2001 -From: Gabor Juhos <juhosg@openwrt.org> -Date: Mon, 2 Jul 2012 17:15:58 +0200 -Subject: [PATCH 12/20] ath9k: fix antenna control configuration for AR9550 - -Signed-off-by: Gabor Juhos <juhosg@openwrt.org> -Acked-by: Luis R. Rodriguez <mcgrof@qca.qualcomm.com> ---- - drivers/net/wireless/ath/ath9k/ar9003_eeprom.c | 3 +++ - drivers/net/wireless/ath/ath9k/ar9003_phy.h | 2 ++ - 2 files changed, 5 insertions(+), 0 deletions(-) - ---- a/drivers/net/wireless/ath/ath9k/ar9003_eeprom.c -+++ b/drivers/net/wireless/ath/ath9k/ar9003_eeprom.c -@@ -3601,6 +3601,9 @@ static void ar9003_hw_ant_ctrl_apply(str - if (AR_SREV_9462(ah)) { - REG_RMW_FIELD(ah, AR_PHY_SWITCH_COM, - AR_SWITCH_TABLE_COM_AR9462_ALL, value); -+ } else if (AR_SREV_9550(ah)) { -+ REG_RMW_FIELD(ah, AR_PHY_SWITCH_COM, -+ AR_SWITCH_TABLE_COM_AR9550_ALL, value); - } else - REG_RMW_FIELD(ah, AR_PHY_SWITCH_COM, - AR_SWITCH_TABLE_COM_ALL, value); ---- a/drivers/net/wireless/ath/ath9k/ar9003_phy.h -+++ b/drivers/net/wireless/ath/ath9k/ar9003_phy.h -@@ -650,6 +650,8 @@ - #define AR_SWITCH_TABLE_COM_ALL_S (0) - #define AR_SWITCH_TABLE_COM_AR9462_ALL (0xffffff) - #define AR_SWITCH_TABLE_COM_AR9462_ALL_S (0) -+#define AR_SWITCH_TABLE_COM_AR9550_ALL (0xffffff) -+#define AR_SWITCH_TABLE_COM_AR9550_ALL_S (0) - #define AR_SWITCH_TABLE_COM_SPDT (0x00f00000) - #define AR_SWITCH_TABLE_COM_SPDT_ALL (0x0000fff0) - #define AR_SWITCH_TABLE_COM_SPDT_ALL_S (4) |