diff options
author | Uwe Kleine-König <u.kleine-koenig@pengutronix.de> | 2011-02-11 12:23:19 +0300 |
---|---|---|
committer | Sascha Hauer <s.hauer@pengutronix.de> | 2011-02-11 20:37:33 +0300 |
commit | e134fb2b40ca7e2d96ba460b0c844c6a9fa489c3 (patch) | |
tree | e124e8af68ec3ca6c01b9ed41e03ea9952fdaaca /arch/arm/mach-mx3/mach-kzm_arm11_01.c | |
parent | 4bd597b633ae630e09d58957bd99870eac35fcb4 (diff) | |
download | linux-e134fb2b40ca7e2d96ba460b0c844c6a9fa489c3.tar.xz |
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-kzm_arm11_01.c')
-rw-r--r-- | arch/arm/mach-mx3/mach-kzm_arm11_01.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/arch/arm/mach-mx3/mach-kzm_arm11_01.c b/arch/arm/mach-mx3/mach-kzm_arm11_01.c index 52b8dd7192c6..d3cc7393a6b1 100644 --- a/arch/arm/mach-mx3/mach-kzm_arm11_01.c +++ b/arch/arm/mach-mx3/mach-kzm_arm11_01.c @@ -266,13 +266,9 @@ static void __init kzm_timer_init(void) } static struct sys_timer kzm_timer = { - .init = kzm_timer_init, + .init = kzm_timer_init, }; -/* - * The following uses standard kernel macros define in arch.h in order to - * initialize __mach_desc_KZM_ARM11_01 data structure. - */ MACHINE_START(KZM_ARM11_01, "Kyoto Microcomputer Co., Ltd. KZM-ARM11-01") .boot_params = MX3x_PHYS_OFFSET + 0x100, .map_io = kzm_map_io, |