aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorXin Gao <[email protected]>2022-07-18 18:55:53 +0800
committerGeert Uytterhoeven <[email protected]>2023-01-30 16:39:43 +0100
commit40202cca4b0abd05502c4efc5747d3920bc380b5 (patch)
tree54af75abd9f96ca73d4764046116f0babd93864f
parent1b929c02afd37871d5afb9d498426f83432e71c2 (diff)
m68k: q40: Do not initialise statics to 0
Remove initialization to zero of static variables. Signed-off-by: Xin Gao <[email protected]> Reviewed-by: Geert Uytterhoeven <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Geert Uytterhoeven <[email protected]>
-rw-r--r--arch/m68k/q40/q40ints.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/m68k/q40/q40ints.c b/arch/m68k/q40/q40ints.c
index d15057d34e56..127d7ecdbd49 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 */