diff options
author | Michael Opdenacker <michael.opdenacker@free-electrons.com> | 2013-10-06 02:27:18 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2013-10-07 03:13:58 -0400 |
commit | 190c6cc32843844722a9897fac1929d57517db14 (patch) | |
tree | 0fc430a61fe9a37a00508f92fda8d931fafc0ec7 /drivers/tty/serial/bfin_uart.c | |
parent | cf81e054d63bca1da899057802e561abc2acecce (diff) |
serial: bfin_uart: 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/serial/bfin_uart.c')
-rw-r--r-- | drivers/tty/serial/bfin_uart.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/tty/serial/bfin_uart.c b/drivers/tty/serial/bfin_uart.c index 74749a6d3565..8f9b3495ef5d 100644 --- a/drivers/tty/serial/bfin_uart.c +++ b/drivers/tty/serial/bfin_uart.c | |||
@@ -726,7 +726,7 @@ static int bfin_serial_startup(struct uart_port *port) | |||
726 | #ifdef CONFIG_SERIAL_BFIN_HARD_CTSRTS | 726 | #ifdef CONFIG_SERIAL_BFIN_HARD_CTSRTS |
727 | if (uart->cts_pin >= 0) { | 727 | if (uart->cts_pin >= 0) { |
728 | if (request_irq(uart->status_irq, bfin_serial_mctrl_cts_int, | 728 | if (request_irq(uart->status_irq, bfin_serial_mctrl_cts_int, |
729 | IRQF_DISABLED, "BFIN_UART_MODEM_STATUS", uart)) { | 729 | 0, "BFIN_UART_MODEM_STATUS", uart)) { |
730 | uart->cts_pin = -1; | 730 | uart->cts_pin = -1; |
731 | dev_info(port->dev, "Unable to attach BlackFin UART Modem Status interrupt.\n"); | 731 | dev_info(port->dev, "Unable to attach BlackFin UART Modem Status interrupt.\n"); |
732 | } | 732 | } |