Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit e6e98cef authored by Peter Hurley's avatar Peter Hurley Committed by Greg Kroah-Hartman
Browse files

serial: 8250: Remove duplicate ->handle_irq initialization



set_io_from_upio() already initializes ->handle_irq to
serial8250_default_handle_irq.

Signed-off-by: default avatarPeter Hurley <peter@hurleysoftware.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 51c39814
Loading
Loading
Loading
Loading
+0 −2
Original line number Diff line number Diff line
@@ -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;
}