[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <157425606627.12247.18304172423061718891.tip-bot2@tip-bot2>
Date: Wed, 20 Nov 2019 13:21:06 -0000
From: "tip-bot2 for Florian Fainelli" <tip-bot2@...utronix.de>
To: linux-tip-commits@...r.kernel.org
Cc: Florian Fainelli <f.fainelli@...il.com>,
Marc Zyngier <maz@...nel.org>, Ingo Molnar <mingo@...nel.org>,
Borislav Petkov <bp@...en8.de>, linux-kernel@...r.kernel.org
Subject: [tip: irq/core] irqchip/irq-bcm7038-l1: Enable parent IRQ if necessary
The following commit has been merged into the irq/core branch of tip:
Commit-ID: 27eebb60357ed5aa6659442f92907c0f7368d6ae
Gitweb: https://git.kernel.org/tip/27eebb60357ed5aa6659442f92907c0f7368d6ae
Author: Florian Fainelli <f.fainelli@...il.com>
AuthorDate: Thu, 24 Oct 2019 13:14:13 -07:00
Committer: Marc Zyngier <maz@...nel.org>
CommitterDate: Sun, 10 Nov 2019 18:47:47
irqchip/irq-bcm7038-l1: Enable parent IRQ if necessary
If the 'brcm,irq-can-wake' property is specified, make sure we also
enable the corresponding parent interrupt we are attached to.
Signed-off-by: Florian Fainelli <f.fainelli@...il.com>
Signed-off-by: Marc Zyngier <maz@...nel.org>
Link: https://lore.kernel.org/r/20191024201415.23454-4-f.fainelli@gmail.com
---
drivers/irqchip/irq-bcm7038-l1.c | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/drivers/irqchip/irq-bcm7038-l1.c b/drivers/irqchip/irq-bcm7038-l1.c
index 689e487..45879e5 100644
--- a/drivers/irqchip/irq-bcm7038-l1.c
+++ b/drivers/irqchip/irq-bcm7038-l1.c
@@ -286,6 +286,10 @@ static int __init bcm7038_l1_init_one(struct device_node *dn,
pr_err("failed to map parent interrupt %d\n", parent_irq);
return -EINVAL;
}
+
+ if (of_property_read_bool(dn, "brcm,irq-can-wake"))
+ enable_irq_wake(parent_irq);
+
irq_set_chained_handler_and_data(parent_irq, bcm7038_l1_irq_handle,
intc);
Powered by blists - more mailing lists