diff options
author | Ralf Baechle <ralf@linux-mips.org> | 2000-02-29 01:25:26 +0000 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2000-02-29 01:25:26 +0000 |
commit | 94250d20ad9130bdada0edf59a390bef677f6cbb (patch) | |
tree | 7df78601a7ed372a3344221e87edd2fa086d7585 /drivers | |
parent | 090a7b73b482900f366934d95746effa2ad8b920 (diff) |
This should hopefully fix the warnings reported.
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/net/ioc3-eth.c | 2 |
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 */ |