diff options
author | Thomas Gleixner <tglx@linutronix.de> | 2011-03-25 10:21:16 -0400 |
---|---|---|
committer | Thomas Gleixner <tglx@linutronix.de> | 2011-03-25 18:06:33 -0400 |
commit | 1919d641e69eff2d1443e1ca9430f394f2e78699 (patch) | |
tree | 9a1e633a9b0ad662cd5d8ada4ead23cf50ced87f /arch/tile | |
parent | 6a03513825db4db57fa93821a0c04dbbb39a68e6 (diff) |
tile: Convert to new irq function names
Converted with coccinelle.
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Acked-by: Chris Metcalf <cmetcalf@tilera.com>
LKML-Reference: <20110325142049.441954268@linutronix.de>
Diffstat (limited to 'arch/tile')
-rw-r--r-- | arch/tile/kernel/irq.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/tile/kernel/irq.c b/arch/tile/kernel/irq.c index 0baa7580121f..83302826239b 100644 --- a/arch/tile/kernel/irq.c +++ b/arch/tile/kernel/irq.c | |||
@@ -241,14 +241,14 @@ void tile_irq_activate(unsigned int irq, int tile_irq_type) | |||
241 | irq_flow_handler_t handle = handle_level_irq; | 241 | irq_flow_handler_t handle = handle_level_irq; |
242 | if (tile_irq_type == TILE_IRQ_PERCPU) | 242 | if (tile_irq_type == TILE_IRQ_PERCPU) |
243 | handle = handle_percpu_irq; | 243 | handle = handle_percpu_irq; |
244 | set_irq_chip_and_handler(irq, &tile_irq_chip, handle); | 244 | irq_set_chip_and_handler(irq, &tile_irq_chip, handle); |
245 | 245 | ||
246 | /* | 246 | /* |
247 | * Flag interrupts that are hardware-cleared so that ack() | 247 | * Flag interrupts that are hardware-cleared so that ack() |
248 | * won't clear them. | 248 | * won't clear them. |
249 | */ | 249 | */ |
250 | if (tile_irq_type == TILE_IRQ_HW_CLEAR) | 250 | if (tile_irq_type == TILE_IRQ_HW_CLEAR) |
251 | set_irq_chip_data(irq, (void *)IS_HW_CLEARED); | 251 | irq_set_chip_data(irq, (void *)IS_HW_CLEARED); |
252 | } | 252 | } |
253 | EXPORT_SYMBOL(tile_irq_activate); | 253 | EXPORT_SYMBOL(tile_irq_activate); |
254 | 254 | ||
@@ -290,7 +290,7 @@ int show_interrupts(struct seq_file *p, void *v) | |||
290 | for_each_online_cpu(j) | 290 | for_each_online_cpu(j) |
291 | seq_printf(p, "%10u ", kstat_irqs_cpu(i, j)); | 291 | seq_printf(p, "%10u ", kstat_irqs_cpu(i, j)); |
292 | #endif | 292 | #endif |
293 | seq_printf(p, " %14s", get_irq_desc_chip(desc)->name); | 293 | seq_printf(p, " %14s", irq_desc_get_chip(desc)->name); |
294 | seq_printf(p, " %s", action->name); | 294 | seq_printf(p, " %s", action->name); |
295 | 295 | ||
296 | for (action = action->next; action; action = action->next) | 296 | for (action = action->next; action; action = action->next) |