@@ -262,7 +262,7 @@ serial21285_set_termios(struct uart_port *port, struct ktermios *termios,
/*
* Ask the core to calculate the divisor for us.
*/
- baud = uart_get_baud_rate(port, termios, old, 0, port->uartclk/16);
+ baud = uart_get_baud_rate(port, termios, old, 0, port->uartclk/16);
quot = uart_get_divisor(port, baud);
b = port->uartclk / (16 * quot);
tty_termios_encode_baud_rate(termios, b, b);
@@ -479,8 +479,7 @@ static int __init serial21285_console_setup(struct console *co, char *options)
static struct uart_driver serial21285_reg;
-static struct console serial21285_console =
-{
+static struct console serial21285_console = {
.name = SERIAL_21285_NAME,
.write = serial21285_console_write,
.device = uart_console_device,
@@ -498,7 +497,7 @@ static int __init rs285_console_init(void)
}
console_initcall(rs285_console_init);
-#define SERIAL_21285_CONSOLE &serial21285_console
+#define SERIAL_21285_CONSOLE (&serial21285_console)
#else
#define SERIAL_21285_CONSOLE NULL
#endif