aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHauke Mehrtens <hauke@openwrt.org>2014-08-08 23:06:16 +0000
committerHauke Mehrtens <hauke@openwrt.org>2014-08-08 23:06:16 +0000
commita5fcdc6d79e7d56aebdf445d9719db9d16a48a2c (patch)
tree70ee2e6096bbc03326ecd3f45e34846f233f657a
parent18974e386b6703f228a0f45c43d6d5e9f1dab359 (diff)
downloadupstream-a5fcdc6d79e7d56aebdf445d9719db9d16a48a2c.tar.gz
upstream-a5fcdc6d79e7d56aebdf445d9719db9d16a48a2c.tar.bz2
upstream-a5fcdc6d79e7d56aebdf445d9719db9d16a48a2c.zip
broadcom-wl: add support for a8xx broadcom devices
Tested on Comtrend VR-3025u (brcm6368 + a8d6-43222). backport of: r42084 Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com> git-svn-id: svn://svn.openwrt.org/openwrt/branches/barrier_breaker@42087 3c298f89-4303-0410-b956-a3cf2f4a3e73
-rw-r--r--package/kernel/broadcom-wl/patches/200-add_bcm_a8xx_support.patch12
1 files changed, 12 insertions, 0 deletions
diff --git a/package/kernel/broadcom-wl/patches/200-add_bcm_a8xx_support.patch b/package/kernel/broadcom-wl/patches/200-add_bcm_a8xx_support.patch
new file mode 100644
index 0000000000..c1d1344003
--- /dev/null
+++ b/package/kernel/broadcom-wl/patches/200-add_bcm_a8xx_support.patch
@@ -0,0 +1,12 @@
+--- a/driver/wl_linux.c
++++ b/driver/wl_linux.c
+@@ -876,7 +876,8 @@ wl_pci_probe(struct pci_dev *pdev, const
+
+ if ((pdev->vendor != PCI_VENDOR_ID_BROADCOM) ||
+ (((pdev->device & 0xff00) != 0x4300) &&
+- ((pdev->device & 0xff00) != 0x4700)))
++ ((pdev->device & 0xff00) != 0x4700) &&
++ ((pdev->device & 0xff00) != 0xa800)))
+ return (-ENODEV);
+
+ rc = pci_enable_device(pdev);