[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: Stefano Brivio <stefano.brivio@polimi.it>
Signed-off-by: John W. Linville <linville@tuxdriver.com>

authored by Stefano Brivio and committed by John W. Linville 357efd57 c8f71b01

+3 -2
+3 -2
drivers/net/wireless/bcm43xx/bcm43xx_main.c
··· 2733 * dangling pins on the second core. Be careful 2734 * and ignore these cores here. 2735 */ 2736 - if (bcm->pci_dev->device != 0x4324) { 2737 - dprintk(KERN_INFO PFX "Ignoring additional 802.11 core.\n"); 2738 continue; 2739 } 2740 }
··· 2733 * dangling pins on the second core. Be careful 2734 * and ignore these cores here. 2735 */ 2736 + if (1 /*bcm->pci_dev->device != 0x4324*/ ) { 2737 + /* TODO: A PHY */ 2738 + dprintk(KERN_INFO PFX "Ignoring additional 802.11a core.\n"); 2739 continue; 2740 } 2741 }