Commit 62fadbd8 authored by Gimcuan Hui's avatar Gimcuan Hui Committed by Greg Kroah-Hartman

tty: serial: jsm: Add space before the open brace

This patch fixes the checkpatch.pl error complain:

ERROR: space required before the open brace '{'
Signed-off-by: default avatarGimcuan Hui <gimcuan@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 4c3897b1
...@@ -474,7 +474,7 @@ int jsm_uart_port_init(struct jsm_board *brd) ...@@ -474,7 +474,7 @@ int jsm_uart_port_init(struct jsm_board *brd)
set_bit(line, linemap); set_bit(line, linemap);
brd->channels[i]->uart_port.line = line; brd->channels[i]->uart_port.line = line;
rc = uart_add_one_port (&jsm_uart_driver, &brd->channels[i]->uart_port); rc = uart_add_one_port (&jsm_uart_driver, &brd->channels[i]->uart_port);
if (rc){ if (rc) {
printk(KERN_INFO "jsm: Port %d failed. Aborting...\n", i); printk(KERN_INFO "jsm: Port %d failed. Aborting...\n", i);
return rc; return rc;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment