Commit 35e857cb authored by Thomas Gleixner's avatar Thomas Gleixner

genirq: Fixup core code namespace fallout

Signed-off-by: default avatarThomas Gleixner <tglx@linutronix.de>
parent c78b9b65
......@@ -618,7 +618,7 @@ handle_edge_irq(unsigned int irq, struct irq_desc *desc)
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);
}
......
......@@ -260,7 +260,7 @@ EXPORT_SYMBOL_GPL(irq_set_affinity_notifier);
static int
setup_affinity(unsigned int irq, struct irq_desc *desc, struct cpumask *mask)
{
struct irq_chip *chip = get_irq_desc_chip(desc);
struct irq_chip *chip = irq_desc_get_chip(desc);
struct cpumask *set = irq_default_affinity;
int ret;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment