Commit e836ed7a authored by Frederik Völkel's avatar Frederik Völkel Committed by Greg Kroah-Hartman

drivers: tty: 68328serial.c: Do not initialize statics to 0

This patch removes an initialization of a static to 0 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 4b7bb2b2
......@@ -157,7 +157,7 @@ static void change_speed(struct m68k_serial *info, struct tty_struct *tty);
#endif
static int m68328_console_initted = 0;
static int m68328_console_initted;
static int m68328_console_baud = CONSOLE_BAUD_RATE;
static int m68328_console_cbaud = DEFAULT_CBAUD;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment