Commit 458414b2 authored by Larry Finger's avatar Larry Finger Committed by David S. Miller

b44: Convert to use of the new SPROM structure

The b44 driver is changed to use the new SPROM data structure.
Signed-off-by: default avatarLarry Finger <Larry.Finger@lwfinger.net>
Signed-off-by: default avatarJohn W. Linville <linville@tuxdriver.com>
parent c272ef44
...@@ -2060,11 +2060,11 @@ static int __devinit b44_get_invariants(struct b44 *bp) ...@@ -2060,11 +2060,11 @@ static int __devinit b44_get_invariants(struct b44 *bp)
if (sdev->bus->bustype == SSB_BUSTYPE_SSB && if (sdev->bus->bustype == SSB_BUSTYPE_SSB &&
instance > 1) { instance > 1) {
addr = sdev->bus->sprom.r1.et1mac; addr = sdev->bus->sprom.et1mac;
bp->phy_addr = sdev->bus->sprom.r1.et1phyaddr; bp->phy_addr = sdev->bus->sprom.et1phyaddr;
} else { } else {
addr = sdev->bus->sprom.r1.et0mac; addr = sdev->bus->sprom.et0mac;
bp->phy_addr = sdev->bus->sprom.r1.et0phyaddr; bp->phy_addr = sdev->bus->sprom.et0phyaddr;
} }
memcpy(bp->dev->dev_addr, addr, 6); memcpy(bp->dev->dev_addr, addr, 6);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment