diff options
author | Jamie Iles <jamie@jamieiles.com> | 2011-08-01 22:09:36 +0200 |
---|---|---|
committer | Barry Song <21cnbao@gmail.com> | 2011-09-11 03:11:26 +0200 |
commit | 6a53747be5f02ba7b37ff5131330363270782dc3 (patch) | |
tree | 2cf9eaaba2bbc453f7f1aa2dbacb1dcca23c376d /arch/arm/mach-prima2/irq.c | |
parent | Linux 3.1-rc5 (diff) | |
download | linux-6a53747be5f02ba7b37ff5131330363270782dc3.tar.xz linux-6a53747be5f02ba7b37ff5131330363270782dc3.zip |
ARM: CSR: add missing sentinels to of_device_id tables
The of_device_id tables used for matching should be terminated with
empty sentinel values.
Signed-off-by: Jamie Iles <jamie@jamieiles.com>
Signed-off-by: Barry Song <baohua.song@csr.com>
Diffstat (limited to 'arch/arm/mach-prima2/irq.c')
-rw-r--r-- | arch/arm/mach-prima2/irq.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/arm/mach-prima2/irq.c b/arch/arm/mach-prima2/irq.c index c3404cbb6ff7..7af254d046ba 100644 --- a/arch/arm/mach-prima2/irq.c +++ b/arch/arm/mach-prima2/irq.c @@ -51,6 +51,7 @@ static __init void sirfsoc_irq_init(void) static struct of_device_id intc_ids[] = { { .compatible = "sirf,prima2-intc" }, + {}, }; void __init sirfsoc_of_irq_init(void) |