netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Kumar Gaurav <kumargauravgupta3@gmail.com>
To: davem@davemloft.net, emilio@elopez.com.ar, mugunthanvnm@ti.com,
	jg1.han@samsung.com, hsweeten@visionengravers.com
Cc: netdev@vger.kernel.org, kernel-janitors@vger.kernel.org,
	Kumar Gaurav <kumargauravgupta3@gmail.com>
Subject: [PATCH] net:ethernet:korina.c Removed IRQF_DISABLED
Date: Fri,  9 Aug 2013 00:50:49 +0530	[thread overview]
Message-ID: <1375989649-7252-1-git-send-email-kumargauravgupta3@gmail.com> (raw)

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

             reply	other threads:[~2013-08-08 19:21 UTC|newest]

Thread overview: 20+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-08-08 19:20 Kumar Gaurav [this message]
2013-08-08 21:09 ` [PATCH] net:ethernet:korina.c Removed IRQF_DISABLED 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

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1375989649-7252-1-git-send-email-kumargauravgupta3@gmail.com \
    --to=kumargauravgupta3@gmail.com \
    --cc=davem@davemloft.net \
    --cc=emilio@elopez.com.ar \
    --cc=hsweeten@visionengravers.com \
    --cc=jg1.han@samsung.com \
    --cc=kernel-janitors@vger.kernel.org \
    --cc=mugunthanvnm@ti.com \
    --cc=netdev@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).