Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 5cbb457e authored by Frederik Völkel's avatar Frederik Völkel Committed by Greg Kroah-Hartman
Browse files

drivers: tty: 68328serial.c: Remove parentheses after return



This patch removes parentheses after return as checkpatch suggests.

Signed-off-by: default avatarFrederik Völkel <frederik.voelkel@fau.de>
Signed-off-by: default avatarLukas Braun <lukas.braun@fau.de>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 2ababf9e
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;
}