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: 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:03 +01:00 committed by Greg Kroah-Hartman
parent 4b7bb2b288
commit e836ed7a2f
1 changed files with 1 additions and 1 deletions

View File

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