tty: serial: jsm: Add space before the open brace
authorGimcuan Hui <gimcuan@gmail.com>
Mon, 2 Oct 2017 14:48:17 +0000 (22:48 +0800)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 3 Oct 2017 18:31:39 +0000 (20:31 +0200)
This patch fixes the checkpatch.pl error complain:

ERROR: space required before the open brace '{'

Signed-off-by: Gimcuan Hui <gimcuan@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/tty/serial/jsm/jsm_tty.c

index ec7d838..e69227c 100644 (file)
@@ -474,7 +474,7 @@ int jsm_uart_port_init(struct jsm_board *brd)
                        set_bit(line, linemap);
                brd->channels[i]->uart_port.line = line;
                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);
                        return rc;
                }