mirror of https://gitee.com/openkylin/linux.git
tty: serial: jsm: delete space between function name and '('
This patch fixes checkpatch.pl warning: space prohibited between function name and open parenthesis '('. Signed-off-by: Gimcuan Hui <gimcuan@gmail.com> Acked-by: Guilherme G. Piccoli <gpiccoli@linux.vnet.ibm.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
d13551d1c9
commit
24719a8dfa
|
@ -474,7 +474,7 @@ int jsm_uart_port_init(struct jsm_board *brd)
|
|||
} else
|
||||
set_bit(line, linemap);
|
||||
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) {
|
||||
printk(KERN_INFO "jsm: Port %d failed. Aborting...\n", i);
|
||||
return rc;
|
||||
|
|
Loading…
Reference in New Issue