Commit bfd3fcff authored by David S. Miller's avatar David S. Miller

[SPARC32]: Fix build after show_interrupts() changes.

parent 1beb4f52
...@@ -86,14 +86,14 @@ int show_sun4d_interrupts(struct seq_file *p, void *v) ...@@ -86,14 +86,14 @@ int show_sun4d_interrupts(struct seq_file *p, void *v)
if (!sbusl) { if (!sbusl) {
action = *(i + irq_action); action = *(i + irq_action);
if (!action) if (!action)
continue; goto out;
} else { } else {
for (j = 0; j < nsbi; j++) { for (j = 0; j < nsbi; j++) {
for (k = 0; k < 4; k++) for (k = 0; k < 4; k++)
if ((action = sbus_actions [(j << 5) + (sbusl << 2) + k].action)) if ((action = sbus_actions [(j << 5) + (sbusl << 2) + k].action))
goto found_it; goto found_it;
} }
continue; goto out;
} }
found_it: seq_printf(p, "%3d: ", i); found_it: seq_printf(p, "%3d: ", i);
#ifndef CONFIG_SMP #ifndef CONFIG_SMP
...@@ -128,6 +128,7 @@ found_it: seq_printf(p, "%3d: ", i); ...@@ -128,6 +128,7 @@ found_it: seq_printf(p, "%3d: ", i);
} }
seq_putc(p, '\n'); seq_putc(p, '\n');
} }
out:
return 0; return 0;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment