dect
/
linux-2.6
Archived
13
0
Fork 0

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

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

Signed-off-by: Andrew Victor <andrew@sanpeople.com>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
This commit is contained in:
Andrew Victor 2007-05-14 14:32:43 +01:00 committed by Russell King
parent 8858e9afdf
commit e45c7a4382
1 changed files with 2 additions and 2 deletions

View File

@ -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;