From 8bc5902d72b3e8deb4f2e1d05d32504de398d567 Mon Sep 17 00:00:00 2001 From: Hauke Mehrtens Date: Fri, 8 Aug 2014 22:58:54 +0000 Subject: [PATCH] broadcom-wl: add support for a8xx broadcom devices MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Tested on Comtrend VR-3025u (brcm6368 + a8d6-43222). Signed-off-by: Álvaro Fernández Rojas SVN-Revision: 42084 --- .../patches/200-add_bcm_a8xx_support.patch | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 package/kernel/broadcom-wl/patches/200-add_bcm_a8xx_support.patch 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); -- 2.30.2