diff options
author | Stefano Brivio <stefano.brivio@polimi.it> | 2007-02-17 18:24:44 +0100 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2007-02-27 10:58:40 -0500 |
commit | 357efd57f229716fd6a1494b970c5a66c0c465ef (patch) | |
tree | c92a944e90e46535f30d0bdcbd18ced88b600c07 /drivers/net/wireless | |
parent | c8f71b01a50597e298dc3214a2f2be7b8d31170c (diff) | |
download | linux-stable-357efd57f229716fd6a1494b970c5a66c0c465ef.tar.gz linux-stable-357efd57f229716fd6a1494b970c5a66c0c465ef.tar.bz2 linux-stable-357efd57f229716fd6a1494b970c5a66c0c465ef.zip |
[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>
Diffstat (limited to 'drivers/net/wireless')
-rw-r--r-- | drivers/net/wireless/bcm43xx/bcm43xx_main.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/drivers/net/wireless/bcm43xx/bcm43xx_main.c b/drivers/net/wireless/bcm43xx/bcm43xx_main.c index 73c831a3b747..e594af46ff05 100644 --- a/drivers/net/wireless/bcm43xx/bcm43xx_main.c +++ b/drivers/net/wireless/bcm43xx/bcm43xx_main.c @@ -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; } } |