aboutsummaryrefslogtreecommitdiffstats
path: root/package/mac80211/patches/840-brcmsmac-remove-PCIE.patch
diff options
context:
space:
mode:
authorHauke Mehrtens <hauke@openwrt.org>2012-06-01 21:17:04 +0000
committerHauke Mehrtens <hauke@openwrt.org>2012-06-01 21:17:04 +0000
commit06abd0b735f3d84124b4a724019a92b2e8d9b1f0 (patch)
treefcdf28ad41c8ced448eed59014aa1fff616587c1 /package/mac80211/patches/840-brcmsmac-remove-PCIE.patch
parente458213eab954e93885ec317e840d1efad981173 (diff)
downloadupstream-06abd0b735f3d84124b4a724019a92b2e8d9b1f0.tar.gz
upstream-06abd0b735f3d84124b4a724019a92b2e8d9b1f0.tar.bz2
upstream-06abd0b735f3d84124b4a724019a92b2e8d9b1f0.zip
mac80211: brcmsmac: add some patches starting to add support for some more chips
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@32020 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/mac80211/patches/840-brcmsmac-remove-PCIE.patch')
-rw-r--r--package/mac80211/patches/840-brcmsmac-remove-PCIE.patch31
1 files changed, 31 insertions, 0 deletions
diff --git a/package/mac80211/patches/840-brcmsmac-remove-PCIE.patch b/package/mac80211/patches/840-brcmsmac-remove-PCIE.patch
new file mode 100644
index 0000000000..de8b46c942
--- /dev/null
+++ b/package/mac80211/patches/840-brcmsmac-remove-PCIE.patch
@@ -0,0 +1,31 @@
+--- a/drivers/net/wireless/brcm80211/brcmsmac/aiutils.c
++++ b/drivers/net/wireless/brcm80211/brcmsmac/aiutils.c
+@@ -320,9 +320,7 @@
+ #define IS_SIM(chippkg) \
+ ((chippkg == HDLSIM_PKG_ID) || (chippkg == HWSIM_PKG_ID))
+
+-#define PCIE(sih) (ai_get_buscoretype(sih) == PCIE_CORE_ID)
+-
+-#define PCI_FORCEHT(sih) (PCIE(sih) && (ai_get_chip_id(sih) == BCM4716_CHIP_ID))
++#define PCI_FORCEHT(sih) ((ai_get_buscoretype(sih) == PCIE_CORE_ID) && (ai_get_chip_id(sih) == BCM4716_CHIP_ID))
+
+ #ifdef DEBUG
+ #define SI_MSG(fmt, ...) pr_debug(fmt, ##__VA_ARGS__)
+@@ -777,7 +775,7 @@ void ai_pci_up(struct si_pub *sih)
+ bcma_core_set_clockmode(cc, BCMA_CLKMODE_FAST);
+ }
+
+- if (PCIE(sih))
++ if (sii->icbus->hosttype == BCMA_HOSTTYPE_PCI)
+ bcma_core_pci_extend_L1timer(&sii->icbus->drv_pci, true);
+ }
+
+@@ -795,7 +793,7 @@ void ai_pci_down(struct si_pub *sih)
+ bcma_core_set_clockmode(cc, BCMA_CLKMODE_DYNAMIC);
+ }
+
+- if (PCIE(sih))
++ if (sii->icbus->hosttype == BCMA_HOSTTYPE_PCI)
+ bcma_core_pci_extend_L1timer(&sii->icbus->drv_pci, false);
+ }
+