|
@@ -282,16 +282,16 @@ static struct irq_chip mpc8xxx_irq_chip = {
|
|
|
.irq_set_type = mpc8xxx_irq_set_type,
|
|
|
};
|
|
|
|
|
|
-static int mpc8xxx_gpio_irq_map(struct irq_domain *h, unsigned int virq,
|
|
|
- irq_hw_number_t hw)
|
|
|
+static int mpc8xxx_gpio_irq_map(struct irq_domain *h, unsigned int irq,
|
|
|
+ irq_hw_number_t hwirq)
|
|
|
{
|
|
|
struct mpc8xxx_gpio_chip *mpc8xxx_gc = h->host_data;
|
|
|
|
|
|
if (mpc8xxx_gc->of_dev_id_data)
|
|
|
mpc8xxx_irq_chip.irq_set_type = mpc8xxx_gc->of_dev_id_data;
|
|
|
|
|
|
- irq_set_chip_data(virq, h->host_data);
|
|
|
- irq_set_chip_and_handler(virq, &mpc8xxx_irq_chip, handle_level_irq);
|
|
|
+ irq_set_chip_data(irq, h->host_data);
|
|
|
+ irq_set_chip_and_handler(irq, &mpc8xxx_irq_chip, handle_level_irq);
|
|
|
|
|
|
return 0;
|
|
|
}
|