Commit 57b998ee authored by Roger Luethi's avatar Roger Luethi Committed by Kai Germaschewski

[PATCH] via-rhine: fixing the reset fix

This trivial patch fixes an obvious typo. Please apply.

Bad semicolon in previous patch ([1/2]). Thanks to
Erik@harddisk-recovery.nl for spotting this.
parent 9b48c576
......@@ -562,7 +562,7 @@ static void wait_for_reset(struct net_device *dev, int chip_id, char *name)
/* VT86C100A may need long delay after reset (dlink) */
/* Seen on Rhine-II as well (rl) */
while ((readw(ioaddr + ChipCmd) & CmdReset) && --boguscnt);
while ((readw(ioaddr + ChipCmd) & CmdReset) && --boguscnt)
udelay(5);
}
......
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