diff options
author | Peter Hurley <peter@hurleysoftware.com> | 2015-02-24 22:25:02 +0300 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2015-03-26 18:14:27 +0300 |
commit | e6e98ceff34d398ca98b78f90966b6b90f668b68 (patch) | |
tree | 17d021fa89d49829c3a677cf99b2419f9f21a541 /drivers/tty/serial/8250 | |
parent | 51c39814b6b23c0d7b0c47ba9236248576a164ad (diff) | |
download | linux-e6e98ceff34d398ca98b78f90966b6b90f668b68.tar.xz |
serial: 8250: Remove duplicate ->handle_irq initialization
set_io_from_upio() already initializes ->handle_irq to
serial8250_default_handle_irq.
Signed-off-by: Peter Hurley <peter@hurleysoftware.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/tty/serial/8250')
-rw-r--r-- | drivers/tty/serial/8250/8250_core.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/drivers/tty/serial/8250/8250_core.c b/drivers/tty/serial/8250/8250_core.c index b7f2d6c0d003..60247030785e 100644 --- a/drivers/tty/serial/8250/8250_core.c +++ b/drivers/tty/serial/8250/8250_core.c @@ -3423,8 +3423,6 @@ int __init early_serial_setup(struct uart_port *port) p->serial_out = port->serial_out; if (port->handle_irq) p->handle_irq = port->handle_irq; - else - p->handle_irq = serial8250_default_handle_irq; return 0; } |