diff options
author | Thomas Gleixner <tglx@linutronix.de> | 2011-03-25 10:16:55 -0400 |
---|---|---|
committer | Chen Liqin <liqin.chen@sunplusct.com> | 2011-03-28 00:03:33 -0400 |
commit | 991353510e8ab5e55c5bbd058c7545f29192cddf (patch) | |
tree | c4ea419bf93ba088fbeef34d69b47f2271453b9f /arch/score | |
parent | fa73c5bffbb2961ca71d88b4d925038458bc2b4c (diff) |
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>
Diffstat (limited to 'arch/score')
-rw-r--r-- | arch/score/kernel/irq.c | 4 |
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); |