diff options
author | Uwe Kleine-König <u.kleine-koenig@pengutronix.de> | 2011-02-11 04:23:19 -0500 |
---|---|---|
committer | Sascha Hauer <s.hauer@pengutronix.de> | 2011-02-11 12:37:33 -0500 |
commit | e134fb2b40ca7e2d96ba460b0c844c6a9fa489c3 (patch) | |
tree | e124e8af68ec3ca6c01b9ed41e03ea9952fdaaca /arch/arm/mach-mx3/mach-mx35_3ds.c | |
parent | 4bd597b633ae630e09d58957bd99870eac35fcb4 (diff) |
ARM: mx3+mx5: rename mxc_board_init to ${machine}_init
mxc_board_init is too generic to be useful. Additionally change some
mxc_timer to ${machine}_timer, too.
Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'arch/arm/mach-mx3/mach-mx35_3ds.c')
-rw-r--r-- | arch/arm/mach-mx3/mach-mx35_3ds.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm/mach-mx3/mach-mx35_3ds.c b/arch/arm/mach-mx3/mach-mx35_3ds.c index dac1896a5b21..be12ac1d1954 100644 --- a/arch/arm/mach-mx3/mach-mx35_3ds.c +++ b/arch/arm/mach-mx3/mach-mx35_3ds.c | |||
@@ -166,7 +166,7 @@ __setup("otg_mode=", mx35_3ds_otg_mode); | |||
166 | /* | 166 | /* |
167 | * Board specific initialization. | 167 | * Board specific initialization. |
168 | */ | 168 | */ |
169 | static void __init mxc_board_init(void) | 169 | static void __init mx35_3ds_init(void) |
170 | { | 170 | { |
171 | mxc_iomux_v3_setup_multiple_pads(mx35pdk_pads, ARRAY_SIZE(mx35pdk_pads)); | 171 | mxc_iomux_v3_setup_multiple_pads(mx35pdk_pads, ARRAY_SIZE(mx35pdk_pads)); |
172 | 172 | ||
@@ -208,5 +208,5 @@ MACHINE_START(MX35_3DS, "Freescale MX35PDK") | |||
208 | .init_early = imx35_init_early, | 208 | .init_early = imx35_init_early, |
209 | .init_irq = mx35_init_irq, | 209 | .init_irq = mx35_init_irq, |
210 | .timer = &mx35pdk_timer, | 210 | .timer = &mx35pdk_timer, |
211 | .init_machine = mxc_board_init, | 211 | .init_machine = mx35_3ds_init, |
212 | MACHINE_END | 212 | MACHINE_END |