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

Commit d511b9c3 authored by Fabio Estevam's avatar Fabio Estevam Committed by Samuel Ortiz
Browse files

gpio: gpio-da9052: Convert to the new da9052 interrupt functions



Convert to the new da9052 interrupt functions, so that we can get rid of
irq_base references.

Cc: Grant Likely <grant.likely@secretlab.ca>
Signed-off-by: default avatarFabio Estevam <fabio.estevam@freescale.com>
Reviewed-by: default avatarMark Brown <broonie@opensource.wolfsonmicro.com>
Reviewed-by: default avatarLinus Walleij <linus.walleij@linaro.org>
Signed-off-by: default avatarSamuel Ortiz <sameo@linux.intel.com>
parent 4b5edf78
Loading
Loading
Loading
Loading
+5 −1
Original line number Diff line number Diff line
@@ -185,7 +185,11 @@ static int da9052_gpio_to_irq(struct gpio_chip *gc, u32 offset)
	struct da9052_gpio *gpio = to_da9052_gpio(gc);
	struct da9052 *da9052 = gpio->da9052;

	return da9052->irq_base + DA9052_IRQ_GPI0 + offset;
	int irq;

	irq = regmap_irq_get_virq(da9052->irq_data, DA9052_IRQ_GPI0 + offset);

	return irq;
}

static struct gpio_chip reference_gp __devinitdata = {