genirq: Fixup core code namespace fallout

Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
This commit is contained in:
Thomas Gleixner
2011-02-10 12:20:23 +01:00
parent c78b9b65fa
commit 35e857cbeb
2 changed files with 4 additions and 4 deletions

View File

@@ -618,7 +618,7 @@ out_unlock:
void
handle_percpu_irq(unsigned int irq, struct irq_desc *desc)
{
struct irq_chip *chip = get_irq_desc_chip(desc);
struct irq_chip *chip = irq_desc_get_chip(desc);
kstat_incr_irqs_this_cpu(irq, desc);
@@ -685,7 +685,7 @@ void
set_irq_chip_and_handler(unsigned int irq, struct irq_chip *chip,
irq_flow_handler_t handle)
{
set_irq_chip(irq, chip);
irq_set_chip(irq, chip);
__set_irq_handler(irq, handle, 0, NULL);
}
@@ -693,7 +693,7 @@ void
set_irq_chip_and_handler_name(unsigned int irq, struct irq_chip *chip,
irq_flow_handler_t handle, const char *name)
{
set_irq_chip(irq, chip);
irq_set_chip(irq, chip);
__set_irq_handler(irq, handle, 0, name);
}