Re: [PATCH] net: pasemi: remove deprecated IRQF_DISABLED

2013-09-15 Thread David Miller
From: Michael Opdenacker 
Date: Fri, 13 Sep 2013 06:21:24 +0200

> This patch proposes to remove the IRQF_DISABLED flag from
> drivers/net/ethernet/pasemi/pasemi_mac.c
> 
> It's a NOOP since 2.6.35 and it will be removed one day.
> 
> Signed-off-by: Michael Opdenacker 

Applied.
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


Re: [PATCH] net: pasemi: remove deprecated IRQF_DISABLED

2013-09-15 Thread David Miller
From: Michael Opdenacker michael.opdenac...@free-electrons.com
Date: Fri, 13 Sep 2013 06:21:24 +0200

 This patch proposes to remove the IRQF_DISABLED flag from
 drivers/net/ethernet/pasemi/pasemi_mac.c
 
 It's a NOOP since 2.6.35 and it will be removed one day.
 
 Signed-off-by: Michael Opdenacker michael.opdenac...@free-electrons.com

Applied.
--
To unsubscribe from this list: send the line unsubscribe linux-kernel in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


[PATCH] net: pasemi: remove deprecated IRQF_DISABLED

2013-09-12 Thread Michael Opdenacker
This patch proposes to remove the IRQF_DISABLED flag from
drivers/net/ethernet/pasemi/pasemi_mac.c

It's a NOOP since 2.6.35 and it will be removed one day.

Signed-off-by: Michael Opdenacker 
---
 drivers/net/ethernet/pasemi/pasemi_mac.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/net/ethernet/pasemi/pasemi_mac.c 
b/drivers/net/ethernet/pasemi/pasemi_mac.c
index c498181..5b65356 100644
--- a/drivers/net/ethernet/pasemi/pasemi_mac.c
+++ b/drivers/net/ethernet/pasemi/pasemi_mac.c
@@ -1219,7 +1219,7 @@ static int pasemi_mac_open(struct net_device *dev)
snprintf(mac->tx_irq_name, sizeof(mac->tx_irq_name), "%s tx",
 dev->name);
 
-   ret = request_irq(mac->tx->chan.irq, pasemi_mac_tx_intr, IRQF_DISABLED,
+   ret = request_irq(mac->tx->chan.irq, pasemi_mac_tx_intr, 0,
  mac->tx_irq_name, mac->tx);
if (ret) {
dev_err(>pdev->dev, "request_irq of irq %d failed: %d\n",
@@ -1230,7 +1230,7 @@ static int pasemi_mac_open(struct net_device *dev)
snprintf(mac->rx_irq_name, sizeof(mac->rx_irq_name), "%s rx",
 dev->name);
 
-   ret = request_irq(mac->rx->chan.irq, pasemi_mac_rx_intr, IRQF_DISABLED,
+   ret = request_irq(mac->rx->chan.irq, pasemi_mac_rx_intr, 0,
  mac->rx_irq_name, mac->rx);
if (ret) {
dev_err(>pdev->dev, "request_irq of irq %d failed: %d\n",
-- 
1.8.1.2

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


[PATCH] net: pasemi: remove deprecated IRQF_DISABLED

2013-09-12 Thread Michael Opdenacker
This patch proposes to remove the IRQF_DISABLED flag from
drivers/net/ethernet/pasemi/pasemi_mac.c

It's a NOOP since 2.6.35 and it will be removed one day.

Signed-off-by: Michael Opdenacker michael.opdenac...@free-electrons.com
---
 drivers/net/ethernet/pasemi/pasemi_mac.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/net/ethernet/pasemi/pasemi_mac.c 
b/drivers/net/ethernet/pasemi/pasemi_mac.c
index c498181..5b65356 100644
--- a/drivers/net/ethernet/pasemi/pasemi_mac.c
+++ b/drivers/net/ethernet/pasemi/pasemi_mac.c
@@ -1219,7 +1219,7 @@ static int pasemi_mac_open(struct net_device *dev)
snprintf(mac-tx_irq_name, sizeof(mac-tx_irq_name), %s tx,
 dev-name);
 
-   ret = request_irq(mac-tx-chan.irq, pasemi_mac_tx_intr, IRQF_DISABLED,
+   ret = request_irq(mac-tx-chan.irq, pasemi_mac_tx_intr, 0,
  mac-tx_irq_name, mac-tx);
if (ret) {
dev_err(mac-pdev-dev, request_irq of irq %d failed: %d\n,
@@ -1230,7 +1230,7 @@ static int pasemi_mac_open(struct net_device *dev)
snprintf(mac-rx_irq_name, sizeof(mac-rx_irq_name), %s rx,
 dev-name);
 
-   ret = request_irq(mac-rx-chan.irq, pasemi_mac_rx_intr, IRQF_DISABLED,
+   ret = request_irq(mac-rx-chan.irq, pasemi_mac_rx_intr, 0,
  mac-rx_irq_name, mac-rx);
if (ret) {
dev_err(mac-pdev-dev, request_irq of irq %d failed: %d\n,
-- 
1.8.1.2

--
To unsubscribe from this list: send the line unsubscribe linux-kernel in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/