Patch 3 of 6. The b44 driver is changed to use the new SPROM data structure. Signed-off-by: Larry Finger <Larry.Finger@xxxxxxxxxxxx> --- Index: wireless-2.6/drivers/net/b44.c =================================================================== --- wireless-2.6.orig/drivers/net/b44.c +++ wireless-2.6/drivers/net/b44.c @@ -2060,11 +2060,11 @@ static int __devinit b44_get_invariants( if (sdev->bus->bustype == SSB_BUSTYPE_SSB && instance > 1) { - addr = sdev->bus->sprom.r1.et1mac; - bp->phy_addr = sdev->bus->sprom.r1.et1phyaddr; + addr = sdev->bus->sprom.data.et1mac; + bp->phy_addr = sdev->bus->sprom.data.et1phyaddr; } else { - addr = sdev->bus->sprom.r1.et0mac; - bp->phy_addr = sdev->bus->sprom.r1.et0phyaddr; + addr = sdev->bus->sprom.data.et0mac; + bp->phy_addr = sdev->bus->sprom.data.et0phyaddr; } memcpy(bp->dev->dev_addr, addr, 6); - To unsubscribe from this list: send the line "unsubscribe linux-wireless" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html