diff options
author | juhosg <juhosg@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2009-01-09 12:38:08 +0000 |
---|---|---|
committer | juhosg <juhosg@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2009-01-09 12:38:08 +0000 |
commit | 94448db595c2db8095a80c3d008a674ab82d0d6d (patch) | |
tree | 39de2efd9cf52b75c86b65a9eb063c6db003443a /package/mac80211/patches/411-ath9k-enable-support-for-AR9100.patch | |
parent | 0d563d039030bfa997a388c8ec2538789ed8bebd (diff) |
[package] mac80211: update ath9k patches
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@13948 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/mac80211/patches/411-ath9k-enable-support-for-AR9100.patch')
-rw-r--r-- | package/mac80211/patches/411-ath9k-enable-support-for-AR9100.patch | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/package/mac80211/patches/411-ath9k-enable-support-for-AR9100.patch b/package/mac80211/patches/411-ath9k-enable-support-for-AR9100.patch new file mode 100644 index 0000000000..f3cc0c9afb --- /dev/null +++ b/package/mac80211/patches/411-ath9k-enable-support-for-AR9100.patch @@ -0,0 +1,32 @@ +From c4568c6e2a62a95c95c7875643a64a19bc8c1a2f Mon Sep 17 00:00:00 2001 +From: Gabor Juhos <juhosg@openwrt.org> +Date: Mon, 5 Jan 2009 11:10:28 +0100 +Subject: [PATCH v2 11/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: |