diff options
author | Rob Herring <rob.herring@calxeda.com> | 2013-01-02 09:37:56 -0600 |
---|---|---|
committer | Rob Herring <rob.herring@calxeda.com> | 2013-01-12 10:52:15 -0600 |
commit | e9c515589df7731591d15e506ba6d69713faae41 (patch) | |
tree | df392b914720ca1a23d701e980de746eca805208 /drivers/irqchip | |
parent | 44430ec068b207f985aa00b1d34bb5085dbc39d5 (diff) | |
download | op-kernel-dev-e9c515589df7731591d15e506ba6d69713faae41.zip op-kernel-dev-e9c515589df7731591d15e506ba6d69713faae41.tar.gz |
ARM: spear: use common irqchip_init function
Convert spear DT irq initialization over to use common irqchip_init
function.
Signed-off-by: Rob Herring <rob.herring@calxeda.com>
Cc: Viresh Kumar <viresh.linux@gmail.com>
Cc: Shiraz Hashim <shiraz.hashim@st.com>
Cc: Rajeev Kumar <rajeev-dlh.kumar@st.com>
Diffstat (limited to 'drivers/irqchip')
-rw-r--r-- | drivers/irqchip/spear-shirq.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/drivers/irqchip/spear-shirq.c b/drivers/irqchip/spear-shirq.c index 80e1d2f..8527743 100644 --- a/drivers/irqchip/spear-shirq.c +++ b/drivers/irqchip/spear-shirq.c @@ -25,6 +25,8 @@ #include <linux/of_irq.h> #include <linux/spinlock.h> +#include "irqchip.h" + static DEFINE_SPINLOCK(lock); /* spear300 shared irq registers offsets and masks */ @@ -300,6 +302,7 @@ int __init spear300_shirq_of_init(struct device_node *np, return shirq_init(spear300_shirq_blocks, ARRAY_SIZE(spear300_shirq_blocks), np); } +IRQCHIP_DECLARE(spear300_shirq, "st,spear300-shirq", spear300_shirq_of_init); int __init spear310_shirq_of_init(struct device_node *np, struct device_node *parent) @@ -307,6 +310,7 @@ int __init spear310_shirq_of_init(struct device_node *np, return shirq_init(spear310_shirq_blocks, ARRAY_SIZE(spear310_shirq_blocks), np); } +IRQCHIP_DECLARE(spear310_shirq, "st,spear310-shirq", spear310_shirq_of_init); int __init spear320_shirq_of_init(struct device_node *np, struct device_node *parent) @@ -314,3 +318,4 @@ int __init spear320_shirq_of_init(struct device_node *np, return shirq_init(spear320_shirq_blocks, ARRAY_SIZE(spear320_shirq_blocks), np); } +IRQCHIP_DECLARE(spear320_shirq, "st,spear320-shirq", spear320_shirq_of_init); |