diff options
Diffstat (limited to 'arch/ia64/kernel')
-rw-r--r-- | arch/ia64/kernel/irq.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/arch/ia64/kernel/irq.c b/arch/ia64/kernel/irq.c index 44be1c952b7c..6dee579f205f 100644 --- a/arch/ia64/kernel/irq.c +++ b/arch/ia64/kernel/irq.c | |||
@@ -61,9 +61,11 @@ int show_interrupts(struct seq_file *p, void *v) | |||
61 | unsigned long flags; | 61 | unsigned long flags; |
62 | 62 | ||
63 | if (i == 0) { | 63 | if (i == 0) { |
64 | seq_printf(p, " "); | 64 | char cpuname[16]; |
65 | seq_printf(p, " "); | ||
65 | for_each_online_cpu(j) { | 66 | for_each_online_cpu(j) { |
66 | seq_printf(p, "CPU%d ",j); | 67 | snprintf(cpuname, 10, "CPU%d", j); |
68 | seq_printf(p, "%10s ", cpuname); | ||
67 | } | 69 | } |
68 | seq_putc(p, '\n'); | 70 | seq_putc(p, '\n'); |
69 | } | 71 | } |