aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--arch/score/kernel/irq.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/score/kernel/irq.c b/arch/score/kernel/irq.c
index ee68ec633242..601a56688a1b 100644
--- a/arch/score/kernel/irq.c
+++ b/arch/score/kernel/irq.c
@@ -92,7 +92,7 @@ void __init init_IRQ(void)
92 unsigned long target_addr; 92 unsigned long target_addr;
93 93
94 for (index = 0; index < NR_IRQS; ++index) 94 for (index = 0; index < NR_IRQS; ++index)
95 set_irq_chip_and_handler(index, &score_irq_chip, 95 irq_set_chip_and_handler(index, &score_irq_chip,
96 handle_level_irq); 96 handle_level_irq);
97 97
98 for (target_addr = IRQ_VECTOR_BASE_ADDR; 98 for (target_addr = IRQ_VECTOR_BASE_ADDR;
@@ -136,7 +136,7 @@ int show_interrupts(struct seq_file *p, void *v)
136 136
137 seq_printf(p, "%3d: ", i); 137 seq_printf(p, "%3d: ", i);
138 seq_printf(p, "%10u ", kstat_irqs(i)); 138 seq_printf(p, "%10u ", kstat_irqs(i));
139 seq_printf(p, " %8s", get_irq_desc_chip(desc)->name ? : "-"); 139 seq_printf(p, " %8s", irq_desc_get_chip(desc)->name ? : "-");
140 seq_printf(p, " %s", action->name); 140 seq_printf(p, " %s", action->name);
141 for (action = action->next; action; action = action->next) 141 for (action = action->next; action; action = action->next)
142 seq_printf(p, ", %s", action->name); 142 seq_printf(p, ", %s", action->name);