mirror of
https://github.com/raspberrypi/linux.git
synced 2025-12-06 10:00:17 +00:00
gpio: davinci: Add irq chip flag to skip set wake
[ Upstream commit7b75c47036] Add the IRQCHIP_SKIP_SET_WAKE flag since there are no special IRQ Wake bits that can be set to enable wakeup IRQ. Fixes:3d9edf09d4("[ARM] 4457/2: davinci: GPIO support") Signed-off-by: Dhruva Gole <d-gole@ti.com> Reviewed-by: Linus Walleij <linus.walleij@linaro.org> Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org> Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
a1da6dcce8
commit
f385e44876
@@ -325,7 +325,7 @@ static struct irq_chip gpio_irqchip = {
|
|||||||
.irq_enable = gpio_irq_enable,
|
.irq_enable = gpio_irq_enable,
|
||||||
.irq_disable = gpio_irq_disable,
|
.irq_disable = gpio_irq_disable,
|
||||||
.irq_set_type = gpio_irq_type,
|
.irq_set_type = gpio_irq_type,
|
||||||
.flags = IRQCHIP_SET_TYPE_MASKED,
|
.flags = IRQCHIP_SET_TYPE_MASKED | IRQCHIP_SKIP_SET_WAKE,
|
||||||
};
|
};
|
||||||
|
|
||||||
static void gpio_irq_handler(struct irq_desc *desc)
|
static void gpio_irq_handler(struct irq_desc *desc)
|
||||||
|
|||||||
Reference in New Issue
Block a user