Commit 9de14f1c45351b6681a9721142850bca1cd20372

Authored by Michael Opdenacker
Committed by Greg Kroah-Hartman
1 parent d88ed628f8

tlclk: 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: Michael Opdenacker <michael.opdenacker@free-electrons.com>
Acked-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

Showing 1 changed file with 1 additions and 1 deletions Side-by-side Diff

drivers/char/tlclk.c
... ... @@ -222,7 +222,7 @@
222 222 /* This device is wired through the FPGA IO space of the ATCA blade
223 223 * we can't share this IRQ */
224 224 result = request_irq(telclk_interrupt, &tlclk_interrupt,
225   - IRQF_DISABLED, "telco_clock", tlclk_interrupt);
  225 + 0, "telco_clock", tlclk_interrupt);
226 226 if (result == -EBUSY)
227 227 printk(KERN_ERR "tlclk: Interrupt can't be reserved.\n");
228 228 else