diff options
author | Erik Hovland <erik@hovland.org> | 2005-12-30 15:57:35 +0000 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2005-12-30 15:57:35 +0000 |
commit | f02aa3f9a3dea4375759ae1d87bebf2467719b72 (patch) | |
tree | 8300a735ff96bc107e05df334a8fd05a951c94fe /drivers/serial | |
parent | 9e625ff8a37aefcc177b19614ffcffb5bc6eeea1 (diff) | |
download | op-kernel-dev-f02aa3f9a3dea4375759ae1d87bebf2467719b72.zip op-kernel-dev-f02aa3f9a3dea4375759ae1d87bebf2467719b72.tar.gz |
[ARM] 3216/1: indent and typo in drivers/serial/pxa.c
Patch from Erik Hovland
This patch provides two changes. An indent is supplied for an if/else clause so that it is more readable. An acronym is incorrectly typed as UER when it should be IER.
Signed-off-by: Erik Hovland <erik@hovland.org>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'drivers/serial')
-rw-r--r-- | drivers/serial/pxa.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/serial/pxa.c b/drivers/serial/pxa.c index ff5e630..cc998b9 100644 --- a/drivers/serial/pxa.c +++ b/drivers/serial/pxa.c @@ -361,7 +361,7 @@ static int serial_pxa_startup(struct uart_port *port) if (port->line == 3) /* HWUART */ up->mcr |= UART_MCR_AFE; else - up->mcr = 0; + up->mcr = 0; /* * Allocate the IRQ @@ -641,7 +641,7 @@ serial_pxa_console_write(struct console *co, const char *s, unsigned int count) int i; /* - * First save the UER then disable the interrupts + * First save the IER then disable the interrupts */ ier = serial_in(up, UART_IER); serial_out(up, UART_IER, UART_IER_UUE); |