score: Convert to new irq function names

Scripted with coccinelle.

Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Acked-by: Chen Liqin <liqin.chen@sunplusct.com>

authored by

Thomas Gleixner and committed by
Chen Liqin
99135351 fa73c5bf

+2 -2
+2 -2
arch/score/kernel/irq.c
··· 92 unsigned long target_addr; 93 94 for (index = 0; index < NR_IRQS; ++index) 95 - set_irq_chip_and_handler(index, &score_irq_chip, 96 handle_level_irq); 97 98 for (target_addr = IRQ_VECTOR_BASE_ADDR; ··· 136 137 seq_printf(p, "%3d: ", i); 138 seq_printf(p, "%10u ", kstat_irqs(i)); 139 - seq_printf(p, " %8s", get_irq_desc_chip(desc)->name ? : "-"); 140 seq_printf(p, " %s", action->name); 141 for (action = action->next; action; action = action->next) 142 seq_printf(p, ", %s", action->name);
··· 92 unsigned long target_addr; 93 94 for (index = 0; index < NR_IRQS; ++index) 95 + irq_set_chip_and_handler(index, &score_irq_chip, 96 handle_level_irq); 97 98 for (target_addr = IRQ_VECTOR_BASE_ADDR; ··· 136 137 seq_printf(p, "%3d: ", i); 138 seq_printf(p, "%10u ", kstat_irqs(i)); 139 + seq_printf(p, " %8s", irq_desc_get_chip(desc)->name ? : "-"); 140 seq_printf(p, " %s", action->name); 141 for (action = action->next; action; action = action->next) 142 seq_printf(p, ", %s", action->name);