diff options
author | Stefano Brivio <stefano.brivio@polimi.it> | 2007-02-17 12:24:44 -0500 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2007-02-27 10:58:40 -0500 |
commit | 357efd57f229716fd6a1494b970c5a66c0c465ef (patch) | |
tree | c92a944e90e46535f30d0bdcbd18ced88b600c07 /drivers/net/wireless/bcm43xx/bcm43xx_main.c | |
parent | c8f71b01a50597e298dc3214a2f2be7b8d31170c (diff) |
[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/bcm43xx/bcm43xx_main.c')
-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) | |||
2733 | * dangling pins on the second core. Be careful | 2733 | * dangling pins on the second core. Be careful |
2734 | * and ignore these cores here. | 2734 | * and ignore these cores here. |
2735 | */ | 2735 | */ |
2736 | if (bcm->pci_dev->device != 0x4324) { | 2736 | if (1 /*bcm->pci_dev->device != 0x4324*/ ) { |
2737 | dprintk(KERN_INFO PFX "Ignoring additional 802.11 core.\n"); | 2737 | /* TODO: A PHY */ |
2738 | dprintk(KERN_INFO PFX "Ignoring additional 802.11a core.\n"); | ||
2738 | continue; | 2739 | continue; |
2739 | } | 2740 | } |
2740 | } | 2741 | } |