Skip to content

Commit 7b75c47

Browse files
DhruvaG2000Bartosz Golaszewski
authored andcommitted
gpio: davinci: Add irq chip flag to skip set wake
Add the IRQCHIP_SKIP_SET_WAKE flag since there are no special IRQ Wake bits that can be set to enable wakeup IRQ. Fixes: 3d9edf0 ("[ARM] 4457/2: davinci: GPIO support") Signed-off-by: Dhruva Gole <[email protected]> Reviewed-by: Linus Walleij <[email protected]> Signed-off-by: Bartosz Golaszewski <[email protected]>
1 parent fe09249 commit 7b75c47

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/gpio/gpio-davinci.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -324,7 +324,7 @@ static struct irq_chip gpio_irqchip = {
324324
.irq_enable = gpio_irq_enable,
325325
.irq_disable = gpio_irq_disable,
326326
.irq_set_type = gpio_irq_type,
327-
.flags = IRQCHIP_SET_TYPE_MASKED,
327+
.flags = IRQCHIP_SET_TYPE_MASKED | IRQCHIP_SKIP_SET_WAKE,
328328
};
329329

330330
static void gpio_irq_handler(struct irq_desc *desc)

0 commit comments

Comments
 (0)