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

2013-09-12 Thread David Miller
From: Michael Opdenacker 
Date: Thu, 12 Sep 2013 06:20:24 +0200

> This patch proposes to remove the IRQF_DISABLED flag from
> drivers/net/ethernet/dec/tulip/de4x5.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: tulip: remove deprecated IRQF_DISABLED

2013-09-12 Thread Grant Grundler
On Wed, Sep 11, 2013 at 9:20 PM, Michael Opdenacker
 wrote:
> This patch proposes to remove the IRQF_DISABLED flag from
> drivers/net/ethernet/dec/tulip/de4x5.c
>
> It's a NOOP since 2.6.35 and it will be removed one day.

yup - that was easy to confirm.

> Signed-off-by: Michael Opdenacker 

Acked-by: Grant Grundler 

thanks,
grant

> ---
>  drivers/net/ethernet/dec/tulip/de4x5.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/net/ethernet/dec/tulip/de4x5.c 
> b/drivers/net/ethernet/dec/tulip/de4x5.c
> index 2db6c57..263b92c 100644
> --- a/drivers/net/ethernet/dec/tulip/de4x5.c
> +++ b/drivers/net/ethernet/dec/tulip/de4x5.c
> @@ -1321,7 +1321,7 @@ de4x5_open(struct net_device *dev)
>  if (request_irq(dev->irq, de4x5_interrupt, IRQF_SHARED,
>  lp->adapter_name, dev)) {
> printk("de4x5_open(): Requested IRQ%d is busy - attemping 
> FAST/SHARE...", dev->irq);
> -   if (request_irq(dev->irq, de4x5_interrupt, IRQF_DISABLED | 
> IRQF_SHARED,
> +   if (request_irq(dev->irq, de4x5_interrupt, IRQF_SHARED,
>  lp->adapter_name, dev)) {
> printk("\n  Cannot get IRQ- reconfigure your 
> hardware.\n");
> disable_ast(dev);
> --
> 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/


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

2013-09-12 Thread Grant Grundler
On Wed, Sep 11, 2013 at 9:20 PM, Michael Opdenacker
michael.opdenac...@free-electrons.com wrote:
 This patch proposes to remove the IRQF_DISABLED flag from
 drivers/net/ethernet/dec/tulip/de4x5.c

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

yup - that was easy to confirm.

 Signed-off-by: Michael Opdenacker michael.opdenac...@free-electrons.com

Acked-by: Grant Grundler grund...@parisc-linux.org

thanks,
grant

 ---
  drivers/net/ethernet/dec/tulip/de4x5.c | 2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)

 diff --git a/drivers/net/ethernet/dec/tulip/de4x5.c 
 b/drivers/net/ethernet/dec/tulip/de4x5.c
 index 2db6c57..263b92c 100644
 --- a/drivers/net/ethernet/dec/tulip/de4x5.c
 +++ b/drivers/net/ethernet/dec/tulip/de4x5.c
 @@ -1321,7 +1321,7 @@ de4x5_open(struct net_device *dev)
  if (request_irq(dev-irq, de4x5_interrupt, IRQF_SHARED,
  lp-adapter_name, dev)) {
 printk(de4x5_open(): Requested IRQ%d is busy - attemping 
 FAST/SHARE..., dev-irq);
 -   if (request_irq(dev-irq, de4x5_interrupt, IRQF_DISABLED | 
 IRQF_SHARED,
 +   if (request_irq(dev-irq, de4x5_interrupt, IRQF_SHARED,
  lp-adapter_name, dev)) {
 printk(\n  Cannot get IRQ- reconfigure your 
 hardware.\n);
 disable_ast(dev);
 --
 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/


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

2013-09-12 Thread David Miller
From: Michael Opdenacker michael.opdenac...@free-electrons.com
Date: Thu, 12 Sep 2013 06:20:24 +0200

 This patch proposes to remove the IRQF_DISABLED flag from
 drivers/net/ethernet/dec/tulip/de4x5.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: tulip: remove deprecated IRQF_DISABLED

2013-09-11 Thread Michael Opdenacker
This patch proposes to remove the IRQF_DISABLED flag from
drivers/net/ethernet/dec/tulip/de4x5.c

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

Signed-off-by: Michael Opdenacker 
---
 drivers/net/ethernet/dec/tulip/de4x5.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/net/ethernet/dec/tulip/de4x5.c 
b/drivers/net/ethernet/dec/tulip/de4x5.c
index 2db6c57..263b92c 100644
--- a/drivers/net/ethernet/dec/tulip/de4x5.c
+++ b/drivers/net/ethernet/dec/tulip/de4x5.c
@@ -1321,7 +1321,7 @@ de4x5_open(struct net_device *dev)
 if (request_irq(dev->irq, de4x5_interrupt, IRQF_SHARED,
 lp->adapter_name, dev)) {
printk("de4x5_open(): Requested IRQ%d is busy - attemping 
FAST/SHARE...", dev->irq);
-   if (request_irq(dev->irq, de4x5_interrupt, IRQF_DISABLED | IRQF_SHARED,
+   if (request_irq(dev->irq, de4x5_interrupt, IRQF_SHARED,
 lp->adapter_name, dev)) {
printk("\n  Cannot get IRQ- reconfigure your 
hardware.\n");
disable_ast(dev);
-- 
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: tulip: remove deprecated IRQF_DISABLED

2013-09-11 Thread Michael Opdenacker
This patch proposes to remove the IRQF_DISABLED flag from
drivers/net/ethernet/dec/tulip/de4x5.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/dec/tulip/de4x5.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/net/ethernet/dec/tulip/de4x5.c 
b/drivers/net/ethernet/dec/tulip/de4x5.c
index 2db6c57..263b92c 100644
--- a/drivers/net/ethernet/dec/tulip/de4x5.c
+++ b/drivers/net/ethernet/dec/tulip/de4x5.c
@@ -1321,7 +1321,7 @@ de4x5_open(struct net_device *dev)
 if (request_irq(dev-irq, de4x5_interrupt, IRQF_SHARED,
 lp-adapter_name, dev)) {
printk(de4x5_open(): Requested IRQ%d is busy - attemping 
FAST/SHARE..., dev-irq);
-   if (request_irq(dev-irq, de4x5_interrupt, IRQF_DISABLED | IRQF_SHARED,
+   if (request_irq(dev-irq, de4x5_interrupt, IRQF_SHARED,
 lp-adapter_name, dev)) {
printk(\n  Cannot get IRQ- reconfigure your 
hardware.\n);
disable_ast(dev);
-- 
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/