mirror of https://gitee.com/openkylin/linux.git
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:
parent
4b7bb2b288
commit
e836ed7a2f
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in New Issue