mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-01-23 08:35:19 -05:00
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>
This commit is contained in:
parent
d88ed628f8
commit
9de14f1c45
1 changed files with 1 additions and 1 deletions
|
@ -222,7 +222,7 @@ static int tlclk_open(struct inode *inode, struct file *filp)
|
|||
/* This device is wired through the FPGA IO space of the ATCA blade
|
||||
* we can't share this IRQ */
|
||||
result = request_irq(telclk_interrupt, &tlclk_interrupt,
|
||||
IRQF_DISABLED, "telco_clock", tlclk_interrupt);
|
||||
0, "telco_clock", tlclk_interrupt);
|
||||
if (result == -EBUSY)
|
||||
printk(KERN_ERR "tlclk: Interrupt can't be reserved.\n");
|
||||
else
|
||||
|
|
Loading…
Add table
Reference in a new issue