To: akpm, linus Cc: lkml Subject: [PATCH] m68k show_interrupts bug M68k: Make sure machine-specific interrupts are always printed (bug introduced by show_interrupts() conversion) --- ints.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) --- linux-2.6.5/arch/m68k/kernel/ints.c 2004-04-05 10:41:52.000000000 +0200 +++ linux-m68k-2.6.5/arch/m68k/kernel/ints.c 2004-04-11 12:53:06.000000000 +0200 @@ -262,8 +262,8 @@ int i = *(loff_t *) v; /* autovector interrupts */ - if (mach_default_handler) { - if (i < SYS_IRQS) { + if (i < SYS_IRQS) { + if (mach_default_handler) { seq_printf(p, "auto %2d: %10u ", i, i ? kstat_cpu(0).irqs[i] : num_spurious); seq_puts(p, " ");