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-igep0020.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-igep0020.c')
-rw-r--r-- | arch/arm/mach-omap2/board-igep0020.c | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/arch/arm/mach-omap2/board-igep0020.c b/arch/arm/mach-omap2/board-igep0020.c index 1b2309febee8..7b66338e451b 100644 --- a/arch/arm/mach-omap2/board-igep0020.c +++ b/arch/arm/mach-omap2/board-igep0020.c | |||
@@ -491,11 +491,6 @@ static struct platform_device *igep_devices[] __initdata = { | |||
491 | &igep_vwlan_device, | 491 | &igep_vwlan_device, |
492 | }; | 492 | }; |
493 | 493 | ||
494 | static void __init igep_init_early(void) | ||
495 | { | ||
496 | omap2_init_common_infrastructure(); | ||
497 | } | ||
498 | |||
499 | static int igep2_keymap[] = { | 494 | static int igep2_keymap[] = { |
500 | KEY(0, 0, KEY_LEFT), | 495 | KEY(0, 0, KEY_LEFT), |
501 | KEY(0, 1, KEY_RIGHT), | 496 | KEY(0, 1, KEY_RIGHT), |
@@ -675,7 +670,7 @@ MACHINE_START(IGEP0020, "IGEP v2 board") | |||
675 | .boot_params = 0x80000100, | 670 | .boot_params = 0x80000100, |
676 | .reserve = omap_reserve, | 671 | .reserve = omap_reserve, |
677 | .map_io = omap3_map_io, | 672 | .map_io = omap3_map_io, |
678 | .init_early = igep_init_early, | 673 | .init_early = omap35xx_init_early, |
679 | .init_irq = omap3_init_irq, | 674 | .init_irq = omap3_init_irq, |
680 | .init_machine = igep_init, | 675 | .init_machine = igep_init, |
681 | .timer = &omap3_timer, | 676 | .timer = &omap3_timer, |
@@ -685,7 +680,7 @@ MACHINE_START(IGEP0030, "IGEP OMAP3 module") | |||
685 | .boot_params = 0x80000100, | 680 | .boot_params = 0x80000100, |
686 | .reserve = omap_reserve, | 681 | .reserve = omap_reserve, |
687 | .map_io = omap3_map_io, | 682 | .map_io = omap3_map_io, |
688 | .init_early = igep_init_early, | 683 | .init_early = omap35xx_init_early, |
689 | .init_irq = omap3_init_irq, | 684 | .init_irq = omap3_init_irq, |
690 | .init_machine = igep_init, | 685 | .init_machine = igep_init, |
691 | .timer = &omap3_timer, | 686 | .timer = &omap3_timer, |