aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--drivers/mfd/db8500-prcmu.c12
1 files changed, 9 insertions, 3 deletions
diff --git a/drivers/mfd/db8500-prcmu.c b/drivers/mfd/db8500-prcmu.c
index 00b8b0f3dfb6..cea29ba6ce9a 100644
--- a/drivers/mfd/db8500-prcmu.c
+++ b/drivers/mfd/db8500-prcmu.c
@@ -2697,9 +2697,15 @@ static struct irq_domain_ops db8500_irq_ops = {
2697 2697
2698static int db8500_irq_init(struct device_node *np) 2698static int db8500_irq_init(struct device_node *np)
2699{ 2699{
2700 db8500_irq_domain = irq_domain_add_legacy( 2700 int irq_base = -1;
2701 np, NUM_PRCMU_WAKEUPS, IRQ_PRCMU_BASE, 2701
2702 0, &db8500_irq_ops, NULL); 2702 /* In the device tree case, just take some IRQs */
2703 if (!np)
2704 irq_base = IRQ_PRCMU_BASE;
2705
2706 db8500_irq_domain = irq_domain_add_simple(
2707 np, NUM_PRCMU_WAKEUPS, irq_base,
2708 &db8500_irq_ops, NULL);
2703 2709
2704 if (!db8500_irq_domain) { 2710 if (!db8500_irq_domain) {
2705 pr_err("Failed to create irqdomain\n"); 2711 pr_err("Failed to create irqdomain\n");