diff options
author | Tony Lindgren <tony@atomide.com> | 2011-08-23 02:57:24 -0400 |
---|---|---|
committer | Tony Lindgren <tony@atomide.com> | 2011-08-24 09:19:02 -0400 |
commit | 8f5b5a41ebc750ffcc2c410371b2b4998955709e (patch) | |
tree | 02a05adecf3ee778ec77d560524b0c2089613405 /arch/arm/mach-omap2/board-ti8168evm.c | |
parent | a4ca9dbe44a167d63545c7ac2b5a36d7b0b415b6 (diff) |
ARM: OMAP: Introduce SoC specific early_init
Introduce them for each omap variant and just make them all call
omap2_init_common_infrastructure for now. Do this for each board-*.c
file except for board-generic and board-omap3beagle as they use
the same machine ID for multiple SoCs.
No functional changes.
Signed-off-by: Tony Lindgren <tony@atomide.com>
Diffstat (limited to 'arch/arm/mach-omap2/board-ti8168evm.c')
-rw-r--r-- | arch/arm/mach-omap2/board-ti8168evm.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/arch/arm/mach-omap2/board-ti8168evm.c b/arch/arm/mach-omap2/board-ti8168evm.c index e249c3d8918d..981ca00d6e29 100644 --- a/arch/arm/mach-omap2/board-ti8168evm.c +++ b/arch/arm/mach-omap2/board-ti8168evm.c | |||
@@ -27,11 +27,6 @@ | |||
27 | static struct omap_board_config_kernel ti8168_evm_config[] __initdata = { | 27 | static struct omap_board_config_kernel ti8168_evm_config[] __initdata = { |
28 | }; | 28 | }; |
29 | 29 | ||
30 | static void __init ti8168_init_early(void) | ||
31 | { | ||
32 | omap2_init_common_infrastructure(); | ||
33 | } | ||
34 | |||
35 | static void __init ti8168_evm_init(void) | 30 | static void __init ti8168_evm_init(void) |
36 | { | 31 | { |
37 | omap_serial_init(); | 32 | omap_serial_init(); |
@@ -50,7 +45,7 @@ MACHINE_START(TI8168EVM, "ti8168evm") | |||
50 | /* Maintainer: Texas Instruments */ | 45 | /* Maintainer: Texas Instruments */ |
51 | .boot_params = 0x80000100, | 46 | .boot_params = 0x80000100, |
52 | .map_io = ti8168_evm_map_io, | 47 | .map_io = ti8168_evm_map_io, |
53 | .init_early = ti8168_init_early, | 48 | .init_early = ti816x_init_early, |
54 | .init_irq = ti816x_init_irq, | 49 | .init_irq = ti816x_init_irq, |
55 | .timer = &omap3_timer, | 50 | .timer = &omap3_timer, |
56 | .init_machine = ti8168_evm_init, | 51 | .init_machine = ti8168_evm_init, |