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

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

pinctrl: sx150x: use new nested IRQ infrastructure



Use the new gpiochip_irqchip_add_nested() and
gpiochip_set_nested_irqchip() calls to properly created
a nested irqchip and mark all child irqs properly with
their parent IRQ.

Signed-off-by: default avatarLinus Walleij <linus.walleij@linaro.org>
parent e1a0d869
Loading
Loading
Loading
Loading
+7 −3
Original line number Diff line number Diff line
@@ -1221,7 +1221,7 @@ static int sx150x_probe(struct i2c_client *client,
		 * plus it will be instantly noticeable if it is ever
		 * called (should not happen)
		 */
		ret = gpiochip_irqchip_add(&pctl->gpio,
		ret = gpiochip_irqchip_add_nested(&pctl->gpio,
					&pctl->irq_chip, 0,
					handle_bad_irq, IRQ_TYPE_NONE);
		if (ret) {
@@ -1236,6 +1236,10 @@ static int sx150x_probe(struct i2c_client *client,
						pctl->irq_chip.name, pctl);
		if (ret < 0)
			return ret;

		gpiochip_set_nested_irqchip(&pctl->gpio,
					    &pctl->irq_chip,
					    client->irq);
	}

	/* Pinctrl_desc */