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-mx31ads.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-mx31ads.c')
-rw-r--r-- | arch/arm/mach-mx3/mach-mx31ads.c | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/arch/arm/mach-mx3/mach-mx31ads.c b/arch/arm/mach-mx3/mach-mx31ads.c index 787bdc4d6cc8..cb80b9638203 100644 --- a/arch/arm/mach-mx3/mach-mx31ads.c +++ b/arch/arm/mach-mx3/mach-mx31ads.c | |||
@@ -524,10 +524,7 @@ static void __init mx31ads_init_irq(void) | |||
524 | mx31ads_init_expio(); | 524 | mx31ads_init_expio(); |
525 | } | 525 | } |
526 | 526 | ||
527 | /*! | 527 | static void __init mx31ads_init(void) |
528 | * Board specific initialization. | ||
529 | */ | ||
530 | static void __init mxc_board_init(void) | ||
531 | { | 528 | { |
532 | mxc_init_extuart(); | 529 | mxc_init_extuart(); |
533 | mxc_init_imx_uart(); | 530 | mxc_init_imx_uart(); |
@@ -555,5 +552,5 @@ MACHINE_START(MX31ADS, "Freescale MX31ADS") | |||
555 | .init_early = imx31_init_early, | 552 | .init_early = imx31_init_early, |
556 | .init_irq = mx31ads_init_irq, | 553 | .init_irq = mx31ads_init_irq, |
557 | .timer = &mx31ads_timer, | 554 | .timer = &mx31ads_timer, |
558 | .init_machine = mxc_board_init, | 555 | .init_machine = mx31ads_init, |
559 | MACHINE_END | 556 | MACHINE_END |