From 40202cca4b0abd05502c4efc5747d3920bc380b5 Mon Sep 17 00:00:00 2001 From: Xin Gao Date: Mon, 18 Jul 2022 18:55:53 +0800 Subject: [PATCH] m68k: q40: Do not initialise statics to 0 Remove initialization to zero of static variables. Signed-off-by: Xin Gao Reviewed-by: Geert Uytterhoeven Link: https://lore.kernel.org/r/20220718105553.6529-1-gaoxin@cdjrlc.com Signed-off-by: Geert Uytterhoeven --- arch/m68k/q40/q40ints.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/arch/m68k/q40/q40ints.c b/arch/m68k/q40/q40ints.c index d15057d..127d7ec 100644 --- a/arch/m68k/q40/q40ints.c +++ b/arch/m68k/q40/q40ints.c @@ -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 */ -- 2.7.4