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-Url: http://drtracing.org/?a=commitdiff_plain;h=e836ed7a2f549b605d10d5ff7b2ea72f2f024d99;p=deliverable%2Flinux.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;