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

Commit 5795cf35 authored by George Cherian's avatar George Cherian Committed by Linus Walleij
Browse files

gpio: pcf857x: Add IRQF_SHARED when request irq



It's quite possible that multiple pcf857x can be hooked up
to the same interrupt line with the processor. So add IRQF_SHARED
in request irq..

Signed-off-by: default avatarGeorge Cherian <george.cherian@ti.com>
Signed-off-by: default avatarLinus Walleij <linus.walleij@linaro.org>
parent e6b698f6
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -262,7 +262,7 @@ static int pcf857x_irq_domain_init(struct pcf857x *gpio,
	/* enable real irq */
	status = devm_request_threaded_irq(&client->dev, client->irq,
				NULL, pcf857x_irq, IRQF_ONESHOT |
				IRQF_TRIGGER_FALLING,
				IRQF_TRIGGER_FALLING | IRQF_SHARED,
				dev_name(&client->dev), gpio);

	if (status)