diff options
author | Barry Song <Baohua.Song@csr.com> | 2015-09-06 23:15:20 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2015-09-09 01:44:42 -0400 |
commit | 7b9018738e43c7c7693632174c69fde83b8edc07 (patch) | |
tree | da21416be7bd726823a04066cc13c5c7b17d88d5 | |
parent | 7a577f013d6745c800a11a2911ddc9a3214e7f09 (diff) |
dm9000: fix a typo
Signed-off-by: Barry Song <Baohua.Song@csr.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r-- | drivers/net/ethernet/davicom/dm9000.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/ethernet/davicom/dm9000.c b/drivers/net/ethernet/davicom/dm9000.c index c0a7813603c3..cf94b72dbacd 100644 --- a/drivers/net/ethernet/davicom/dm9000.c +++ b/drivers/net/ethernet/davicom/dm9000.c | |||
@@ -1226,7 +1226,7 @@ static irqreturn_t dm9000_interrupt(int irq, void *dev_id) | |||
1226 | if (int_status & ISR_PRS) | 1226 | if (int_status & ISR_PRS) |
1227 | dm9000_rx(dev); | 1227 | dm9000_rx(dev); |
1228 | 1228 | ||
1229 | /* Trnasmit Interrupt check */ | 1229 | /* Transmit Interrupt check */ |
1230 | if (int_status & ISR_PTS) | 1230 | if (int_status & ISR_PTS) |
1231 | dm9000_tx_done(dev, db); | 1231 | dm9000_tx_done(dev, db); |
1232 | 1232 | ||