From: Frederik Völkel Date: Fri, 11 Dec 2015 10:36:03 +0000 (+0100) Subject: drivers: tty: 68328serial.c: Do not initialize statics to 0 X-Git-Tag: v4.5-rc1~123^2~11 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=e836ed7a2f549b605d10d5ff7b2ea72f2f024d99;p=karo-tx-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 Signed-off-by: Lukas Braun Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/tty/serial/68328serial.c b/drivers/tty/serial/68328serial.c index b26cbae609ef..b6d7230c2086 100644 --- a/drivers/tty/serial/68328serial.c +++ b/drivers/tty/serial/68328serial.c @@ -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;