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

Commit e45c7a43 authored by Andrew Victor's avatar Andrew Victor Committed by Russell King
Browse files

[ARM] 4378/1: KS8695: Serial driver fix



A fix for a really stupid typo in the KS8695 serial driver.

Signed-off-by: default avatarAndrew Victor <andrew@sanpeople.com>
Signed-off-by: default avatarRussell King <rmk+kernel@arm.linux.org.uk>
parent 8858e9af
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -301,11 +301,11 @@ static int ks8695uart_startup(struct uart_port *port)

	retval = request_irq(KS8695_IRQ_UART_LINE_STATUS, ks8695uart_rx_chars, IRQF_DISABLED, "UART LineStatus", port);
	if (retval)
		return err_ls;
		goto err_ls;

	retval = request_irq(KS8695_IRQ_UART_MODEM_STATUS, ks8695uart_modem_status, IRQF_DISABLED, "UART ModemStatus", port);
	if (retval)
		return err_ms;
		goto err_ms;

	return 0;