Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 357efd57 authored by Stefano Brivio's avatar Stefano Brivio Committed by John W. Linville
Browse files

[PATCH] bcm43xx: fix for 4309



BCM4309 devices aren't working properly as A PHYs aren't supported
yet, but we probe 802.11a cores anyway. This fixes it, while still
allowing for A PHY code to be developed in the future.

Signed-off-by: default avatarStefano Brivio <stefano.brivio@polimi.it>
Signed-off-by: default avatarJohn W. Linville <linville@tuxdriver.com>
parent c8f71b01
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -2733,8 +2733,9 @@ static int bcm43xx_probe_cores(struct bcm43xx_private *bcm)
				 * dangling pins on the second core. Be careful
				 * and ignore these cores here.
				 */
				if (bcm->pci_dev->device != 0x4324) {
					dprintk(KERN_INFO PFX "Ignoring additional 802.11 core.\n");
				if (1 /*bcm->pci_dev->device != 0x4324*/ ) {
				/* TODO: A PHY */
					dprintk(KERN_INFO PFX "Ignoring additional 802.11a core.\n");
					continue;
				}
			}