Skip to content

Commit 40202cc

Browse files
Xin Gaogeertu
authored andcommitted
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]>
1 parent 1b929c0 commit 40202cc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

arch/m68k/q40/q40ints.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -201,8 +201,8 @@ static int ccleirq=60; /* ISA dev IRQs*/
201201
#define DEBUG_Q40INT
202202
/*#define IP_USE_DISABLE *//* would be nice, but crashes ???? */
203203

204-
static int mext_disabled=0; /* ext irq disabled by master chip? */
205-
static int aliased_irq=0; /* how many times inside handler ?*/
204+
static int mext_disabled; /* ext irq disabled by master chip? */
205+
static int aliased_irq; /* how many times inside handler ?*/
206206

207207

208208
/* got interrupt, dispatch to ISA or keyboard/timer IRQs */

0 commit comments

Comments
 (0)