diff options
author | Frederik Völkel <frederik.voelkel@fau.de> | 2015-12-11 05:36:05 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2015-12-13 22:59:48 -0500 |
commit | 5cbb457e35f76a5a7b0dac30a07447e94a770057 (patch) | |
tree | 578ae5df07670ea4566e085c86e50aa5f4a29d0d /drivers/tty | |
parent | 2ababf9e791180a997ab367dfa97c1a7085bd170 (diff) |
drivers: tty: 68328serial.c: Remove parentheses after return
This patch removes parentheses after return as checkpatch suggests.
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>
Diffstat (limited to 'drivers/tty')
-rw-r--r-- | drivers/tty/serial/68328serial.c | 2 |
1 files changed, 1 insertions, 1 deletions
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) | |||
1279 | } | 1279 | } |
1280 | 1280 | ||
1281 | m68328_set_baud(); /* make sure baud rate changes */ | 1281 | m68328_set_baud(); /* make sure baud rate changes */ |
1282 | return(0); | 1282 | return 0; |
1283 | } | 1283 | } |
1284 | 1284 | ||
1285 | 1285 | ||