Coding style clean-up patch. Signed-off-by: michael --- drivers/serial/atmel_serial.c | 14 +++++++------- 1 files changed, 7 insertions(+), 7 deletions(-) diff --git a/drivers/serial/atmel_serial.c b/drivers/serial/atmel_serial.c index d57bf3e..9f58eb3 100644 --- a/drivers/serial/atmel_serial.c +++ b/drivers/serial/atmel_serial.c @@ -122,7 +122,7 @@ struct atmel_uart_char { u16 ch; }; -#define ATMEL_SERIAL_RINGSIZE 1024 +#define ATMEL_SERIAL_RINGSIZE 1024 /* * We wrap our port structure around the generic uart_port. @@ -394,8 +394,8 @@ static void atmel_rx_chars(struct uart_port *port) /* clear error */ UART_PUT_CR(port, ATMEL_US_RSTSTA); - if (status & ATMEL_US_RXBRK - && !atmel_port->break_active) { + if (status & ATMEL_US_RXBRK && + !atmel_port->break_active) { atmel_port->break_active = 1; UART_PUT_IER(port, ATMEL_US_RXBRK); } else { @@ -1394,8 +1394,8 @@ console_initcall(atmel_console_init); */ static int __init atmel_late_console_init(void) { - if (atmel_default_console_device - && !(atmel_console.flags & CON_ENABLED)) + if (atmel_default_console_device && + !(atmel_console.flags & CON_ENABLED)) register_console(&atmel_console); return 0; @@ -1434,8 +1434,8 @@ static int atmel_serial_suspend(struct platform_device *pdev, struct uart_port *port = platform_get_drvdata(pdev); struct atmel_uart_port *atmel_port = to_atmel_uart_port(port); - if (device_may_wakeup(&pdev->dev) - && !at91_suspend_entering_slow_clock()) + if (device_may_wakeup(&pdev->dev) && + !at91_suspend_entering_slow_clock()) enable_irq_wake(port->irq); else { uart_suspend_port(&atmel_uart, port); -- 1.5.2.1.174.gcd03-dirty