diff options
author | Rob Herring <robh@kernel.org> | 2014-03-24 16:06:42 -0500 |
---|---|---|
committer | Rob Herring <robh@kernel.org> | 2014-05-20 14:24:40 -0500 |
commit | 735e0da7fc55a0456476f6b40f85024f68f87092 (patch) | |
tree | 41e26b8d24835851261c9b9b49fc334e232cd13b /drivers/irqchip/irqchip.c | |
parent | 6e87b7030e3ef2c7ad01fcaa1b46d3ebe6c261e7 (diff) | |
download | op-kernel-dev-735e0da7fc55a0456476f6b40f85024f68f87092.zip op-kernel-dev-735e0da7fc55a0456476f6b40f85024f68f87092.tar.gz |
irqchip: align irqchip OF match table section naming
Make the irqchip OF match table section naming aligned with other
OF match table sections in preparation to have a common definition.
Acked-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Rob Herring <robh@kernel.org>
Diffstat (limited to 'drivers/irqchip/irqchip.c')
-rw-r--r-- | drivers/irqchip/irqchip.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/irqchip/irqchip.c b/drivers/irqchip/irqchip.c index cad3e24..0fe2f71 100644 --- a/drivers/irqchip/irqchip.c +++ b/drivers/irqchip/irqchip.c @@ -19,11 +19,11 @@ * special section. */ static const struct of_device_id -irqchip_of_match_end __used __section(__irqchip_of_end); +irqchip_of_match_end __used __section(__irqchip_of_table_end); -extern struct of_device_id __irqchip_begin[]; +extern struct of_device_id __irqchip_of_table[]; void __init irqchip_init(void) { - of_irq_init(__irqchip_begin); + of_irq_init(__irqchip_of_table); } |