aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhil Elwell <[email protected]>2021-05-21 12:01:58 +0300
committerLinus Walleij <[email protected]>2021-05-28 02:56:13 +0200
commit4bc80da53317edd1c31c183203aa7d8809c42667 (patch)
tree68954e3b79ddfc77568341cf400bccf0956c10c4
parentb9045af9fb26f2d81acb32a6d6f5bbfe6fb6c670 (diff)
pinctrl: bcm2835: Accept fewer than expected IRQs
The downstream .dts files only request two GPIO IRQs. Truncate the array of parent IRQs when irq_of_parse_and_map returns 0. Signed-off-by: Phil Elwell <[email protected]> Signed-off-by: Ivan T. Ivanov <[email protected]> Reviewed-by: Florian Fainelli <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Linus Walleij <[email protected]>
-rw-r--r--drivers/pinctrl/bcm/pinctrl-bcm2835.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/drivers/pinctrl/bcm/pinctrl-bcm2835.c b/drivers/pinctrl/bcm/pinctrl-bcm2835.c
index 1d21129f7751..2c87af1180c4 100644
--- a/drivers/pinctrl/bcm/pinctrl-bcm2835.c
+++ b/drivers/pinctrl/bcm/pinctrl-bcm2835.c
@@ -1274,9 +1274,13 @@ static int bcm2835_pinctrl_probe(struct platform_device *pdev)
char *name;
girq->parents[i] = irq_of_parse_and_map(np, i);
- if (!is_7211)
+ if (!is_7211) {
+ if (!girq->parents[i]) {
+ girq->num_parents = i;
+ break;
+ }
continue;
-
+ }
/* Skip over the all banks interrupts */
pc->wake_irq[i] = irq_of_parse_and_map(np, i +
BCM2835_NUM_IRQS + 1);