diff options
author | Alexey Dobriyan <adobriyan@gmail.com> | 2006-01-16 22:13:57 -0800 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-01-16 23:15:26 -0800 |
commit | 3868cca523e20a2600f6a9b1feebb69a6c8ccb68 (patch) | |
tree | 4c3e6b6c79eb9467d289b9b944cf13d9d726e9f6 /arch | |
parent | 511c3a2beefbb7d263063f2fef48615fba2d7255 (diff) | |
download | op-kernel-dev-3868cca523e20a2600f6a9b1feebb69a6c8ccb68.zip op-kernel-dev-3868cca523e20a2600f6a9b1feebb69a6c8ccb68.tar.gz |
[PATCH] arm26: kernel/irq.c: fix compilation
It's trying to "continue;" in "if" statement.
Signed-off-by: Alexey Dobriyan <adobriyan@gmail.com>
Acked-by: Ian Molton <spyro@f2s.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/arm26/kernel/irq.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/arm26/kernel/irq.c b/arch/arm26/kernel/irq.c index f3cc103..0934e6f 100644 --- a/arch/arm26/kernel/irq.c +++ b/arch/arm26/kernel/irq.c @@ -141,7 +141,7 @@ int show_interrupts(struct seq_file *p, void *v) if (i < NR_IRQS) { action = irq_desc[i].action; if (!action) - continue; + goto out; seq_printf(p, "%3d: %10u ", i, kstat_irqs(i)); seq_printf(p, " %s", action->name); for (action = action->next; action; action = action->next) { @@ -152,6 +152,7 @@ int show_interrupts(struct seq_file *p, void *v) show_fiq_list(p, v); seq_printf(p, "Err: %10lu\n", irq_err_count); } +out: return 0; } |