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: Stefano Brivio <stefano.brivio@polimi.it>
Cc: Michael Buesch <mb@bu3sch.de>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
Stefano Brivio
2007-02-17 18:43:14 +01:00
committed by Greg Kroah-Hartman
parent 7e3cd6f62e
commit 810189f708
+3 -2
View File
@@ -2736,8 +2736,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;
}
}