projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
511c3a2
)
[PATCH] arm26: kernel/irq.c: fix compilation
author
Alexey Dobriyan
<
[email protected]
>
Tue, 17 Jan 2006 06:13:57 +0000
(22:13 -0800)
committer
Linus Torvalds
<
[email protected]
>
Tue, 17 Jan 2006 07:15:26 +0000
(23:15 -0800)
It's trying to "continue;" in "if" statement.
Signed-off-by: Alexey Dobriyan <
[email protected]
>
Acked-by: Ian Molton <
[email protected]
>
Signed-off-by: Andrew Morton <
[email protected]
>
Signed-off-by: Linus Torvalds <
[email protected]
>
arch/arm26/kernel/irq.c
patch
|
blob
|
history
diff --git
a/arch/arm26/kernel/irq.c
b/arch/arm26/kernel/irq.c
index f3cc1036e5bc84744789e53159af8d8c88b803ed..0934e6fba6062e2579f7bdbe836fff83cb2b87f7 100644
(file)
--- 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;
}