Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 36e42a32 authored by Axel Lin's avatar Axel Lin Committed by Olof Johansson
Browse files

irqchip: irq-bcm2835: Add terminating entry for of_device_id table



The of_device_id table is supposed to be zero-terminated.

Signed-off-by: default avatarAxel Lin <axel.lin@ingics.com>
Signed-off-by: default avatarStephen Warren <swarren@wwwdotorg.org>
Signed-off-by: default avatarOlof Johansson <olof@lixom.net>
parent dfac74d3
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -168,7 +168,8 @@ static int __init armctrl_of_init(struct device_node *node,
}

static struct of_device_id irq_of_match[] __initconst = {
	{ .compatible = "brcm,bcm2835-armctrl-ic", .data = armctrl_of_init }
	{ .compatible = "brcm,bcm2835-armctrl-ic", .data = armctrl_of_init },
	{ }
};

void __init bcm2835_init_irq(void)