tty: serial: jsm: delete space between function name and '('
authorGimcuan Hui <gimcuan@gmail.com>
Sun, 5 Nov 2017 05:06:20 +0000 (05:06 +0000)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 8 Nov 2017 11:58:31 +0000 (12:58 +0100)
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>
drivers/tty/serial/jsm/jsm_tty.c

index ed58dfc..53c3f53 100644 (file)
@@ -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;