netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] net:ethernet:korina.c Removed IRQF_DISABLED
@ 2013-08-08 19:20 Kumar Gaurav
  2013-08-08 21:09 ` Dan Carpenter
  0 siblings, 1 reply; 20+ messages in thread
From: Kumar Gaurav @ 2013-08-08 19:20 UTC (permalink / raw)
  To: davem, emilio, mugunthanvnm, jg1.han, hsweeten
  Cc: netdev, kernel-janitors, Kumar Gaurav

Removed IRQF_DISABLED as it's no-op and should be removed

Signed-off-by: Kumar Gaurav <kumargauravgupta3@gmail.com>
---
 drivers/net/ethernet/korina.c |    8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/drivers/net/ethernet/korina.c b/drivers/net/ethernet/korina.c
index 270e65f..a36fa80 100644
--- a/drivers/net/ethernet/korina.c
+++ b/drivers/net/ethernet/korina.c
@@ -996,14 +996,14 @@ static int korina_open(struct net_device *dev)
 	 * that handles the Done Finished
 	 * Ovr and Und Events */
 	ret = request_irq(lp->rx_irq, korina_rx_dma_interrupt,
-			IRQF_DISABLED, "Korina ethernet Rx", dev);
+			0, "Korina ethernet Rx", dev);
 	if (ret < 0) {
 		printk(KERN_ERR "%s: unable to get Rx DMA IRQ %d\n",
 		    dev->name, lp->rx_irq);
 		goto err_release;
 	}
 	ret = request_irq(lp->tx_irq, korina_tx_dma_interrupt,
-			IRQF_DISABLED, "Korina ethernet Tx", dev);
+			0, "Korina ethernet Tx", dev);
 	if (ret < 0) {
 		printk(KERN_ERR "%s: unable to get Tx DMA IRQ %d\n",
 		    dev->name, lp->tx_irq);
@@ -1012,7 +1012,7 @@ static int korina_open(struct net_device *dev)
 
 	/* Install handler for overrun error. */
 	ret = request_irq(lp->ovr_irq, korina_ovr_interrupt,
-			IRQF_DISABLED, "Ethernet Overflow", dev);
+			0, "Ethernet Overflow", dev);
 	if (ret < 0) {
 		printk(KERN_ERR "%s: unable to get OVR IRQ %d\n",
 		    dev->name, lp->ovr_irq);
@@ -1021,7 +1021,7 @@ static int korina_open(struct net_device *dev)
 
 	/* Install handler for underflow error. */
 	ret = request_irq(lp->und_irq, korina_und_interrupt,
-			IRQF_DISABLED, "Ethernet Underflow", dev);
+			0, "Ethernet Underflow", dev);
 	if (ret < 0) {
 		printk(KERN_ERR "%s: unable to get UND IRQ %d\n",
 		    dev->name, lp->und_irq);
-- 
1.7.9.5

^ permalink raw reply related	[flat|nested] 20+ messages in thread

end of thread, other threads:[~2013-08-09 16:28 UTC | newest]

Thread overview: 20+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-08-08 19:20 [PATCH] net:ethernet:korina.c Removed IRQF_DISABLED Kumar Gaurav
2013-08-08 21:09 ` Dan Carpenter
2013-08-08 21:11   ` Sergei Shtylyov
2013-08-08 21:20   ` David Miller
2013-08-08 21:23     ` Dan Carpenter
2013-08-08 21:33     ` Joe Perches
2013-08-09  2:24       ` Kumar Gaurav
2013-08-09  2:39         ` Joe Perches
2013-08-09  2:45           ` Kumar Gaurav
2013-08-09  2:54             ` Joe Perches
2013-08-09  3:00               ` Kumar Gaurav
2013-08-09  3:10                 ` Joe Perches
2013-08-09  3:28                 ` Joe Perches
2013-08-09  3:38                   ` Kumar Gaurav
2013-08-09 13:15                     ` Peter Senna Tschudin
2013-08-09 15:14                       ` Joe Perches
2013-08-09 15:53                         ` Peter Senna Tschudin
2013-08-09 16:28                           ` Joe Perches
2013-08-09  7:11           ` walter harms
2013-08-09  0:59     ` Jingoo Han

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).