Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit ba519dd4 authored by Linus Walleij's avatar Linus Walleij
Browse files

gpio: intel-mid: drop references to "virtual" IRQ



Rename the argument "virq" to just "irq", this IRQ isn't any
more "virtual" than any other Linux IRQ number, we use "hwirq"
for the actual hw-numbers, "virq" is just bogus.

Acked-by: default avatarDavid Cohen <david.a.cohen@linux.intel.com>
Signed-off-by: default avatarLinus Walleij <linus.walleij@linaro.org>
parent 2d61e3e9
Loading
Loading
Loading
Loading
+5 −5
Original line number Diff line number Diff line
@@ -353,15 +353,15 @@ static void intel_mid_irq_init_hw(struct intel_mid_gpio *priv)
	}
}

static int intel_gpio_irq_map(struct irq_domain *d, unsigned int virq,
			    irq_hw_number_t hw)
static int intel_gpio_irq_map(struct irq_domain *d, unsigned int irq,
			    irq_hw_number_t hwirq)
{
	struct intel_mid_gpio *priv = d->host_data;

	irq_set_chip_and_handler_name(virq, &intel_mid_irqchip,
	irq_set_chip_and_handler_name(irq, &intel_mid_irqchip,
				      handle_simple_irq, "demux");
	irq_set_chip_data(virq, priv);
	irq_set_irq_type(virq, IRQ_TYPE_NONE);
	irq_set_chip_data(irq, priv);
	irq_set_irq_type(irq, IRQ_TYPE_NONE);

	return 0;
}