mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-01-25 17:53:34 -05:00
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: Axel Lin <axel.lin@ingics.com> Signed-off-by: Stephen Warren <swarren@wwwdotorg.org> Signed-off-by: Olof Johansson <olof@lixom.net>
This commit is contained in:
parent
dfac74d38e
commit
36e42a323c
1 changed files with 2 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Reference in a new issue