The patch titled bcm43xx: check for valid MAC address in SPROM has been added to the -mm tree. Its filename is bcm43xx-check-for-valid-mac-address-in-sprom.patch See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this From: Stefano Brivio <stefano.brivio@xxxxxxxxx> Check for valid MAC address in SPROM fields instead of relying on PHY type while setting the MAC address in the networking subsystem, as some devices have multiple PHYs. Signed-off-by: Stefano Brivio <stefano.brivio@xxxxxxxxx> Cc: Michael Buesch <mb@xxxxxxxxx> Cc: "John W. Linville" <linville@xxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- drivers/net/wireless/bcm43xx/bcm43xx_main.c | 2 +- 1 files changed, 1 insertion(+), 1 deletion(-) diff -puN drivers/net/wireless/bcm43xx/bcm43xx_main.c~bcm43xx-check-for-valid-mac-address-in-sprom drivers/net/wireless/bcm43xx/bcm43xx_main.c --- devel/drivers/net/wireless/bcm43xx/bcm43xx_main.c~bcm43xx-check-for-valid-mac-address-in-sprom 2006-05-10 01:51:03.000000000 -0700 +++ devel-akpm/drivers/net/wireless/bcm43xx/bcm43xx_main.c 2006-05-10 01:51:32.000000000 -0700 @@ -3467,7 +3467,7 @@ static int bcm43xx_attach_board(struct b bcm43xx_pctl_set_crystal(bcm, 0); /* Set the MAC address in the networking subsystem */ - if (bcm43xx_current_phy(bcm)->type == BCM43xx_PHYTYPE_A) + if (is_valid_ether_addr(bcm->sprom.et1macaddr)) memcpy(bcm->net_dev->dev_addr, bcm->sprom.et1macaddr, 6); else memcpy(bcm->net_dev->dev_addr, bcm->sprom.il0macaddr, 6); _ Patches currently in -mm which might be from stefano.brivio@xxxxxxxxx are bcm43xx-check-for-valid-mac-address-in-sprom.patch bcm43xx-fix-whitespace.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html