mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-26 04:10:51 +07:00
[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>
This commit is contained in:
parent
c8f71b01a5
commit
357efd57f2
@ -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;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user