diff options
author | Alan Cox <alan@lxorguk.ukuu.org.uk> | 2008-02-05 01:27:53 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2008-02-05 12:44:10 -0500 |
commit | 3e8d4e2075e049664294722b436edfc5ced6ca53 (patch) | |
tree | 51510152392373b388bad091518f790228f18826 /drivers/serial/8250.c | |
parent | 6d4d67beb963de8865499781b8523e5b683819c3 (diff) |
serial: Coding style
Coding style tweaks and printk levels.
Signed-off-by: Alan Cox <alan@redhat.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/serial/8250.c')
-rw-r--r-- | drivers/serial/8250.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/serial/8250.c b/drivers/serial/8250.c index c93ef205aa2f..b8a4bd94f51d 100644 --- a/drivers/serial/8250.c +++ b/drivers/serial/8250.c | |||
@@ -2047,7 +2047,7 @@ serial8250_set_termios(struct uart_port *port, struct ktermios *termios, | |||
2047 | * Oxford Semi 952 rev B workaround | 2047 | * Oxford Semi 952 rev B workaround |
2048 | */ | 2048 | */ |
2049 | if (up->bugs & UART_BUG_QUOT && (quot & 0xff) == 0) | 2049 | if (up->bugs & UART_BUG_QUOT && (quot & 0xff) == 0) |
2050 | quot ++; | 2050 | quot++; |
2051 | 2051 | ||
2052 | if (up->capabilities & UART_CAP_FIFO && up->port.fifosize > 1) { | 2052 | if (up->capabilities & UART_CAP_FIFO && up->port.fifosize > 1) { |
2053 | if (baud < 2400) | 2053 | if (baud < 2400) |