* [patch] wanxl: remove a stray irq enable
@ 2011-06-29 6:29 Dan Carpenter
0 siblings, 0 replies; only message in thread
From: Dan Carpenter @ 2011-06-29 6:29 UTC (permalink / raw)
To: Krzysztof Halasa; +Cc: open list:NETWORKING DRIVERS, kernel-janitors
This is error path calls unlock_irq() where we haven't disabled the
IRQs. The comment says that this error path can never happen.
Signed-off-by: Dan Carpenter <error27@gmail.com>
---
This is a static checker fix and I don't have the hardware to test.
diff --git a/drivers/net/wan/wanxl.c b/drivers/net/wan/wanxl.c
index 8d7aa43..44b7071 100644
--- a/drivers/net/wan/wanxl.c
+++ b/drivers/net/wan/wanxl.c
@@ -284,7 +284,7 @@ static netdev_tx_t wanxl_xmit(struct sk_buff *skb, struct net_device *dev)
printk(KERN_DEBUG "%s: transmitter buffer full\n", dev->name);
#endif
netif_stop_queue(dev);
- spin_unlock_irq(&port->lock);
+ spin_unlock(&port->lock);
return NETDEV_TX_BUSY; /* request packet to be queued */
}
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2011-06-29 6:30 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-06-29 6:29 [patch] wanxl: remove a stray irq enable Dan Carpenter
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox