diff options
author | Sascha Hauer <s.hauer@pengutronix.de> | 2009-05-25 11:36:19 -0400 |
---|---|---|
committer | Sascha Hauer <s.hauer@pengutronix.de> | 2009-08-07 06:10:54 -0400 |
commit | c5aa0ad0c557c63dcaf8c8d75a3dd4c5e90724b3 (patch) | |
tree | 9750fbbf8e9c57e9cd9a948d8740fc65df93a5e6 /arch/arm/mach-mx3/mm.c | |
parent | 12308dfe3776ff5741fc675f2a352165e1628098 (diff) |
mxc: turn to soc specific init_irq functions
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'arch/arm/mach-mx3/mm.c')
-rw-r--r-- | arch/arm/mach-mx3/mm.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/arch/arm/mach-mx3/mm.c b/arch/arm/mach-mx3/mm.c index f0d5ae533b49..c327172159c0 100644 --- a/arch/arm/mach-mx3/mm.c +++ b/arch/arm/mach-mx3/mm.c | |||
@@ -88,6 +88,16 @@ void __init mx35_map_io(void) | |||
88 | iotable_init(mxc_io_desc, ARRAY_SIZE(mxc_io_desc)); | 88 | iotable_init(mxc_io_desc, ARRAY_SIZE(mxc_io_desc)); |
89 | } | 89 | } |
90 | 90 | ||
91 | void __init mx31_init_irq(void) | ||
92 | { | ||
93 | mxc_init_irq(IO_ADDRESS(AVIC_BASE_ADDR)); | ||
94 | } | ||
95 | |||
96 | void __init mx35_init_irq(void) | ||
97 | { | ||
98 | mx31_init_irq(); | ||
99 | } | ||
100 | |||
91 | #ifdef CONFIG_CACHE_L2X0 | 101 | #ifdef CONFIG_CACHE_L2X0 |
92 | static int mxc_init_l2x0(void) | 102 | static int mxc_init_l2x0(void) |
93 | { | 103 | { |