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-qong.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-qong.c')
-rw-r--r-- | arch/arm/mach-mx3/mach-qong.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm/mach-mx3/mach-qong.c b/arch/arm/mach-mx3/mach-qong.c index 064f2db25f39..002816347e67 100644 --- a/arch/arm/mach-mx3/mach-qong.c +++ b/arch/arm/mach-mx3/mach-qong.c | |||
@@ -247,7 +247,7 @@ static void __init qong_init_fpga(void) | |||
247 | /* | 247 | /* |
248 | * Board specific initialization. | 248 | * Board specific initialization. |
249 | */ | 249 | */ |
250 | static void __init mxc_board_init(void) | 250 | static void __init qong_init(void) |
251 | { | 251 | { |
252 | mxc_init_imx_uart(); | 252 | mxc_init_imx_uart(); |
253 | qong_init_nor_mtd(); | 253 | qong_init_nor_mtd(); |
@@ -275,5 +275,5 @@ MACHINE_START(QONG, "Dave/DENX QongEVB-LITE") | |||
275 | .init_early = imx31_init_early, | 275 | .init_early = imx31_init_early, |
276 | .init_irq = mx31_init_irq, | 276 | .init_irq = mx31_init_irq, |
277 | .timer = &qong_timer, | 277 | .timer = &qong_timer, |
278 | .init_machine = mxc_board_init, | 278 | .init_machine = qong_init, |
279 | MACHINE_END | 279 | MACHINE_END |