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>
This commit is contained in:
Frederik Völkel 2015-12-11 11:36:05 +01:00 committed by Greg Kroah-Hartman
parent 2ababf9e79
commit 5cbb457e35
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}