mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-12-03 09:04:21 +08:00
serial: tegra: 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> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
97a7729a5c
commit
cf81e054d6
@ -1018,7 +1018,7 @@ static int tegra_uart_startup(struct uart_port *u)
|
||||
goto fail_hw_init;
|
||||
}
|
||||
|
||||
ret = request_irq(u->irq, tegra_uart_isr, IRQF_DISABLED,
|
||||
ret = request_irq(u->irq, tegra_uart_isr, 0,
|
||||
dev_name(u->dev), tup);
|
||||
if (ret < 0) {
|
||||
dev_err(u->dev, "Failed to register ISR for IRQ %d\n", u->irq);
|
||||
|
Loading…
Reference in New Issue
Block a user