Skip to content

Commit

Permalink
Fix misspelling of "truly" in a label.
Browse files Browse the repository at this point in the history
A label reads 'truely_dead' rather than 'truly_dead'; this fixes it.
No change in functionality.

Signed-off-by: Adam Buchbinder <[email protected]>
Signed-off-by: Jiri Kosina <[email protected]>
  • Loading branch information
adambuchbinder authored and Jiri Kosina committed Feb 4, 2010
1 parent 303863f commit a089377
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions drivers/net/typhoon.c
Original file line number Diff line number Diff line change
Expand Up @@ -2113,7 +2113,7 @@ typhoon_tx_timeout(struct net_device *dev)
if(typhoon_reset(tp->ioaddr, WaitNoSleep) < 0) {
printk(KERN_WARNING "%s: could not reset in tx timeout\n",
dev->name);
goto truely_dead;
goto truly_dead;
}

/* If we ever start using the Hi ring, it will need cleaning too */
Expand All @@ -2123,13 +2123,13 @@ typhoon_tx_timeout(struct net_device *dev)
if(typhoon_start_runtime(tp) < 0) {
printk(KERN_ERR "%s: could not start runtime in tx timeout\n",
dev->name);
goto truely_dead;
goto truly_dead;
}

netif_wake_queue(dev);
return;

truely_dead:
truly_dead:
/* Reset the hardware, and turn off carrier to avoid more timeouts */
typhoon_reset(tp->ioaddr, NoWait);
netif_carrier_off(dev);
Expand Down

0 comments on commit a089377

Please sign in to comment.