On Wed, Sep 11, 2013 at 9:20 PM, Michael Opdenacker <[email protected]> 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 <[email protected]> Acked-by: Grant Grundler <[email protected]> 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 [email protected] More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/

