Commit 40202cca authored by Xin Gao's avatar Xin Gao Committed by Geert Uytterhoeven

m68k: q40: Do not initialise statics to 0

Remove initialization to zero of static variables.
Signed-off-by: default avatarXin Gao <gaoxin@cdjrlc.com>
Reviewed-by: default avatarGeert Uytterhoeven <geert@linux-m68k.org>
Link: https://lore.kernel.org/r/20220718105553.6529-1-gaoxin@cdjrlc.comSigned-off-by: default avatarGeert Uytterhoeven <geert@linux-m68k.org>
parent 1b929c02
......@@ -201,8 +201,8 @@ static int ccleirq=60; /* ISA dev IRQs*/
#define DEBUG_Q40INT
/*#define IP_USE_DISABLE *//* would be nice, but crashes ???? */
static int mext_disabled=0; /* ext irq disabled by master chip? */
static int aliased_irq=0; /* how many times inside handler ?*/
static int mext_disabled; /* ext irq disabled by master chip? */
static int aliased_irq; /* how many times inside handler ?*/
/* got interrupt, dispatch to ISA or keyboard/timer IRQs */
......
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