From: Frederik Völkel Date: Fri, 11 Dec 2015 10:36:05 +0000 (+0100) Subject: drivers: tty: 68328serial.c: Remove parentheses after return X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=5cbb457e35f76a5a7b0dac30a07447e94a770057;p=deliverable%2Flinux.git drivers: tty: 68328serial.c: Remove parentheses after return This patch removes parentheses after return as checkpatch suggests. Signed-off-by: Frederik Völkel Signed-off-by: Lukas Braun Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/tty/serial/68328serial.c b/drivers/tty/serial/68328serial.c index 8d58517232ef..0982c1a44187 100644 --- a/drivers/tty/serial/68328serial.c +++ b/drivers/tty/serial/68328serial.c @@ -1279,7 +1279,7 @@ int m68328_console_setup(struct console *cp, char *arg) } m68328_set_baud(); /* make sure baud rate changes */ - return(0); + return 0; }