drivers: tty: 68328serial.c: remove unnecessary spaces(checkpatch)
authorFrederik Völkel <frederik.voelkel@fau.de>
Fri, 11 Dec 2015 10:36:02 +0000 (11:36 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 14 Dec 2015 03:59:48 +0000 (19:59 -0800)
This patch removes unnecessary spaces reported by checkpatch.

Signed-off-by: Frederik Völkel <frederik.voelkel@fau.de>
Signed-off-by: Lukas Braun <lukas.braun@fau.de>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/tty/serial/68328serial.c

index 4cdd8054db823e70833d23660a011b8e81b0addf..b26cbae609ef1b6f61be62277021bc5efbeb5f5c 100644 (file)
@@ -538,7 +538,7 @@ static void change_speed(struct m68k_serial *info, struct tty_struct *tty)
        
 #ifdef CONFIG_SERIAL_68328_RTS_CTS
        if (cflag & CRTSCTS) {
-               uart->utx.w &= ~ UTX_NOCTS;
+               uart->utx.w &= ~UTX_NOCTS;
        } else {
                uart->utx.w |= UTX_NOCTS;
        }
@@ -1198,7 +1198,7 @@ rs68328_init(void)
            printk(" is a builtin MC68328 UART\n");
            
 #ifdef CONFIG_M68VZ328
-               if (i > 0 )
+               if (i > 0)
                        PJSEL &= 0xCF;  /* PSW enable second port output */
 #endif
 
@@ -1298,7 +1298,7 @@ void m68328_console_write (struct console *co, const char *str,
     while (count--) {
         if (*str == '\n')
            rs_put_char('\r');
-        rs_put_char( *str++ );
+        rs_put_char(*str++);
     }
 }
 
This page took 0.025914 seconds and 5 git commands to generate.