Skip to content

Commit

Permalink
ethernet: xircom: fix spelling mistakes on "excessive collisions"
Browse files Browse the repository at this point in the history
trivial fixes to spelling mistakes of the words "excessive collisions"

Signed-off-by: Colin Ian King <colin.king@canonical.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
Colin Ian King authored and David S. Miller committed Jun 27, 2016
1 parent 1b28324 commit ac5fd4f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions drivers/net/ethernet/xircom/xirc2ps_cs.c
Original file line number Diff line number Diff line change
Expand Up @@ -1144,8 +1144,8 @@ xirc2ps_interrupt(int irq, void *dev_id)
dev->stats.tx_packets += lp->last_ptr_value - n;
netif_wake_queue(dev);
}
if (tx_status & 0x0002) { /* Execessive collissions */
pr_debug("tx restarted due to execssive collissions\n");
if (tx_status & 0x0002) { /* Excessive collisions */
pr_debug("tx restarted due to excessive collisions\n");
PutByte(XIRCREG_CR, RestartTx); /* restart transmitter process */
}
if (tx_status & 0x0040)
Expand Down

0 comments on commit ac5fd4f

Please sign in to comment.