diff options
author | Gabor Juhos <juhosg@openwrt.org> | 2009-01-07 18:17:27 +0000 |
---|---|---|
committer | Gabor Juhos <juhosg@openwrt.org> | 2009-01-07 18:17:27 +0000 |
commit | 9d1109bd84896ec88e4a750106041dc080ea5dc5 (patch) | |
tree | a10fd8850c14f26974e7dc59366aafce0290b454 /package/mac80211/patches/408-ath9k-enable-support-for-AR9100.patch | |
parent | 8e7f25af444476d0ff3ee2d09b47e85e5d756bb8 (diff) | |
download | upstream-9d1109bd84896ec88e4a750106041dc080ea5dc5.tar.gz upstream-9d1109bd84896ec88e4a750106041dc080ea5dc5.tar.bz2 upstream-9d1109bd84896ec88e4a750106041dc080ea5dc5.zip |
mac80211: update compat-wireless to 2009-01-07, and refresh ath9k patches
SVN-Revision: 13925
Diffstat (limited to 'package/mac80211/patches/408-ath9k-enable-support-for-AR9100.patch')
-rw-r--r-- | package/mac80211/patches/408-ath9k-enable-support-for-AR9100.patch | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/package/mac80211/patches/408-ath9k-enable-support-for-AR9100.patch b/package/mac80211/patches/408-ath9k-enable-support-for-AR9100.patch new file mode 100644 index 0000000000..794f22ad67 --- /dev/null +++ b/package/mac80211/patches/408-ath9k-enable-support-for-AR9100.patch @@ -0,0 +1,32 @@ +From c09de7514f7020370e256d6739c1c27ecb356542 Mon Sep 17 00:00:00 2001 +From: Gabor Juhos <juhosg@openwrt.org> +Date: Mon, 5 Jan 2009 11:10:28 +0100 +Subject: [PATCH 08/11] ath9k: enable support for AR9100 + +Because we have support for the AR9100 devices now, we can enable them. + +Signed-off-by: Gabor Juhos <juhosg@openwrt.org> +Signed-off-by: Imre Kaloz <kaloz@openwrt.org> +--- + drivers/net/wireless/ath9k/hw.c | 3 +++ + 1 files changed, 3 insertions(+), 0 deletions(-) + +--- a/drivers/net/wireless/ath9k/hw.c ++++ b/drivers/net/wireless/ath9k/hw.c +@@ -373,6 +373,8 @@ static const char *ath9k_hw_devname(u16 + return "Atheros 5418"; + case AR9160_DEVID_PCI: + return "Atheros 9160"; ++ case AR5416_AR9100_DEVID: ++ return "Atheros 9100"; + case AR9280_DEVID_PCI: + case AR9280_DEVID_PCIE: + return "Atheros 9280"; +@@ -1176,6 +1178,7 @@ struct ath_hal *ath9k_hw_attach(u16 devi + switch (devid) { + case AR5416_DEVID_PCI: + case AR5416_DEVID_PCIE: ++ case AR5416_AR9100_DEVID: + case AR9160_DEVID_PCI: + case AR9280_DEVID_PCI: + case AR9280_DEVID_PCIE: |