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

Commit fac7ce92 authored by Markus Mayer's avatar Markus Mayer Committed by Linus Walleij
Browse files

gpio: bcm281xx: Fix nested interrupt handler issue



The GPIO interrupt handler does not need to be marked as nested.

Signed-off-by: default avatarMarkus Mayer <markus.mayer@linaro.org>
Signed-off-by: default avatarLinus Walleij <linus.walleij@linaro.org>
parent ee0f5b39
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -478,7 +478,6 @@ static int bcm_kona_gpio_irq_map(struct irq_domain *d, unsigned int irq,
		return ret;
	irq_set_lockdep_class(irq, &gpio_lock_class);
	irq_set_chip_and_handler(irq, &bcm_gpio_irq_chip, handle_simple_irq);
	irq_set_nested_thread(irq, 1);
#ifdef CONFIG_ARM
	set_irq_flags(irq, IRQF_VALID);
#else