diff options
author | Tudor Ambarus <[email protected]> | 2024-01-19 10:45:17 +0000 |
---|---|---|
committer | Greg Kroah-Hartman <[email protected]> | 2024-01-27 19:05:19 -0800 |
commit | 048dc68709a0c7ed80f327d4b7ff5af7461107e3 (patch) | |
tree | 077d8efcddcc5c972e5687ce9d59589a92b86f5d | |
parent | b1617c7888476e69e5b03b89eedef2bd2c60901e (diff) |
tty: serial: samsung: move open brace '{' on the next line
Move open brace '{' following function definition on the next line.
Reviewed-by: Sam Protsenko <[email protected]>
Signed-off-by: Tudor Ambarus <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Greg Kroah-Hartman <[email protected]>
-rw-r--r-- | drivers/tty/serial/samsung_tty.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/tty/serial/samsung_tty.c b/drivers/tty/serial/samsung_tty.c index 303b67498c65..b6d34c9f46ea 100644 --- a/drivers/tty/serial/samsung_tty.c +++ b/drivers/tty/serial/samsung_tty.c @@ -1739,7 +1739,8 @@ static struct uart_driver s3c24xx_uart_drv = { static struct s3c24xx_uart_port s3c24xx_serial_ports[UART_NR]; -static void s3c24xx_serial_init_port_default(int index) { +static void s3c24xx_serial_init_port_default(int index) +{ struct uart_port *port = &s3c24xx_serial_ports[index].port; spin_lock_init(&port->lock); |