Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

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>

authored by

Michael Opdenacker and committed by
Greg Kroah-Hartman
190c6cc3 cf81e054

+1 -1
+1 -1
drivers/tty/serial/bfin_uart.c
··· 726 726 #ifdef CONFIG_SERIAL_BFIN_HARD_CTSRTS 727 727 if (uart->cts_pin >= 0) { 728 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 730 uart->cts_pin = -1; 731 731 dev_info(port->dev, "Unable to attach BlackFin UART Modem Status interrupt.\n"); 732 732 }