summaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorRalf Baechle <ralf@linux-mips.org>2000-02-29 01:25:26 +0000
committerRalf Baechle <ralf@linux-mips.org>2000-02-29 01:25:26 +0000
commit94250d20ad9130bdada0edf59a390bef677f6cbb (patch)
tree7df78601a7ed372a3344221e87edd2fa086d7585 /drivers
parent090a7b73b482900f366934d95746effa2ad8b920 (diff)
This should hopefully fix the warnings reported.
Diffstat (limited to 'drivers')
-rw-r--r--drivers/net/ioc3-eth.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/ioc3-eth.c b/drivers/net/ioc3-eth.c
index 7a0cdd490..94645b12d 100644
--- a/drivers/net/ioc3-eth.c
+++ b/drivers/net/ioc3-eth.c
@@ -402,7 +402,7 @@ ioc3_tx(struct ioc3_private *ip, struct ioc3 *ioc3)
skb = ip->tx_skbs[o_entry];
ip->stats.tx_packets++;
ip->stats.tx_bytes += skb->len;
- dev_kfree_skb(skb);
+ dev_kfree_skb_irq(skb);
ip->tx_skbs[o_entry] = NULL;
o_entry = (o_entry + 1) & 127; /* Next */