diff options
author | Ben Hutchings <ben@decadent.org.uk> | 2010-07-22 14:18:28 (GMT) |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2010-07-23 20:05:13 (GMT) |
commit | 344e0f623cec5eba273db06fe57db080988d6b26 (patch) | |
tree | 6fa948a7ac34e8023490013a890967e204035c64 | |
parent | 9c1797808996eef47a7954ec580c6db7de1fff76 (diff) | |
download | linux-344e0f623cec5eba273db06fe57db080988d6b26.tar.xz |
3c59x: Fix call to mdio_sync() with the wrong argument
commit a095cfc40ec7ebe63e9532383c5b5c2a27b14075
"3c59x: Specify window explicitly for access to windowed registers"
changed the first parameter to mdio_sync(), from a pointer to the
register mapping, to a pointer to the vortex_private structure,
and changed all but one of the call sites. Fix that last one.
Reported-by: Luca Falavigna <dktrkranz@debian.org>
Signed-off-by: Ben Hutchings <ben@decadent.org.uk>
Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r-- | drivers/net/3c59x.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/3c59x.c b/drivers/net/3c59x.c index ebd4c19..c44d599 100644 --- a/drivers/net/3c59x.c +++ b/drivers/net/3c59x.c @@ -1393,7 +1393,7 @@ static int __devinit vortex_probe1(struct device *gendev, mii_preamble_required++; if (vp->drv_flags & EXTRA_PREAMBLE) mii_preamble_required++; - mdio_sync(ioaddr, 32); + mdio_sync(vp, 32); mdio_read(dev, 24, MII_BMSR); for (phy = 0; phy < 32 && phy_idx < 1; phy++) { int mii_status, phyx; |