diff options
author | Michael Opdenacker <michael.opdenacker@free-electrons.com> | 2013-10-06 02:30:17 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2013-10-07 03:13:58 -0400 |
commit | cf81e054d63bca1da899057802e561abc2acecce (patch) | |
tree | 0dc4c67bd2634748fd7c6cb70d456b7c30faf6d3 /drivers/tty | |
parent | 97a7729a5c2f01faa076f38a7ec010961b456823 (diff) |
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>
Diffstat (limited to 'drivers/tty')
-rw-r--r-- | drivers/tty/serial/serial-tegra.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/tty/serial/serial-tegra.c b/drivers/tty/serial/serial-tegra.c index 0489a2bdcdf9..dfe79ccc4fb3 100644 --- a/drivers/tty/serial/serial-tegra.c +++ b/drivers/tty/serial/serial-tegra.c | |||
@@ -1018,7 +1018,7 @@ static int tegra_uart_startup(struct uart_port *u) | |||
1018 | goto fail_hw_init; | 1018 | goto fail_hw_init; |
1019 | } | 1019 | } |
1020 | 1020 | ||
1021 | ret = request_irq(u->irq, tegra_uart_isr, IRQF_DISABLED, | 1021 | ret = request_irq(u->irq, tegra_uart_isr, 0, |
1022 | dev_name(u->dev), tup); | 1022 | dev_name(u->dev), tup); |
1023 | if (ret < 0) { | 1023 | if (ret < 0) { |
1024 | dev_err(u->dev, "Failed to register ISR for IRQ %d\n", u->irq); | 1024 | dev_err(u->dev, "Failed to register ISR for IRQ %d\n", u->irq); |