Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 33235ca4 authored by Michael Opdenacker's avatar Michael Opdenacker Committed by David S. Miller
Browse files

isdn: remove deprecated IRQF_DISABLED



This patch proposes to remove the use of the IRQF_DISABLED flag

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

Signed-off-by: default avatarMichael Opdenacker <michael.opdenacker@free-electrons.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 3a14aede
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -481,7 +481,7 @@ void __inline__ outpp(void __iomem *addr, word p)
int diva_os_register_irq(void *context, byte irq, const char *name)
{
	int result = request_irq(irq, diva_os_irq_wrapper,
				 IRQF_DISABLED | IRQF_SHARED, name, context);
				 IRQF_SHARED, name, context);
	return (result);
}

+1 −1
Original line number Diff line number Diff line
@@ -336,7 +336,7 @@ static int __init sc_init(void)
		 */
		sc_adapter[cinst]->interrupt = irq[b];
		if (request_irq(sc_adapter[cinst]->interrupt, interrupt_handler,
				IRQF_DISABLED, interface->id,
				0, interface->id,
				(void *)(unsigned long) cinst))
		{
			kfree(sc_adapter[cinst]->channel);