All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/1] ARM: OMAP: Add conditional compilation for board specific init functions
@ 2011-10-14 22:00 Javier Martinez Canillas
  2011-10-18 18:36 ` Kyle Manna
  0 siblings, 1 reply; 7+ messages in thread
From: Javier Martinez Canillas @ 2011-10-14 22:00 UTC (permalink / raw)
  To: Tony Lindgren; +Cc: linux-omap, Javier Martinez Canillas

The definition for board specific initialization functions:
- omap2_set_globals_xxxx
- omapxxxx_powerdomains_init
- omapxxxx_clockdomains_init
- omapxxxx_hwmod_init

is conditionally compiled. So we also have to conditionally compile
the call to these functions or the linker will find undefined symbols.

Signed-off-by: Javier Martinez Canillas <martinez.javier@gmail.com>
---
 arch/arm/mach-omap2/io.c |    6 ++++++
 1 files changed, 6 insertions(+), 0 deletions(-)

diff --git a/arch/arm/mach-omap2/io.c b/arch/arm/mach-omap2/io.c
index aa96538..d2d045b 100644
--- a/arch/arm/mach-omap2/io.c
+++ b/arch/arm/mach-omap2/io.c
@@ -359,6 +359,7 @@ static void __init omap_hwmod_init_postsetup(void)
 	omap_pm_if_early_init();
 }
 
+#ifdef CONFIG_SOC_OMAP2420
 void __init omap2420_init_early(void)
 {
 	omap2_set_globals_242x();
@@ -370,7 +371,9 @@ void __init omap2420_init_early(void)
 	omap_hwmod_init_postsetup();
 	omap2420_clk_init();
 }
+#endif
 
+#ifdef CONFIG_SOC_OMAP2430
 void __init omap2430_init_early(void)
 {
 	omap2_set_globals_243x();
@@ -382,6 +385,7 @@ void __init omap2430_init_early(void)
 	omap_hwmod_init_postsetup();
 	omap2430_clk_init();
 }
+#endif
 
 /*
  * Currently only board-omap3beagle.c should call this because of the
@@ -431,6 +435,7 @@ void __init ti816x_init_early(void)
 	omap3xxx_clk_init();
 }
 
+#ifdef CONFIG_ARCH_OMAP4
 void __init omap4430_init_early(void)
 {
 	omap2_set_globals_443x();
@@ -442,6 +447,7 @@ void __init omap4430_init_early(void)
 	omap_hwmod_init_postsetup();
 	omap4xxx_clk_init();
 }
+#endif
 
 void __init omap_sdrc_init(struct omap_sdrc_params *sdrc_cs0,
 				      struct omap_sdrc_params *sdrc_cs1)
-- 
1.7.4.1


^ permalink raw reply related	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2011-11-03 19:16 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-10-14 22:00 [PATCH 1/1] ARM: OMAP: Add conditional compilation for board specific init functions Javier Martinez Canillas
2011-10-18 18:36 ` Kyle Manna
2011-10-18 18:43   ` [PATCH] ARM: OMAP: Fix early init definitions Kyle Manna
2011-10-18 18:43     ` Kyle Manna
2011-10-18 18:43     ` Kyle Manna
2011-10-18 20:01   ` [PATCH 1/1] ARM: OMAP: Add conditional compilation for board specific init functions Javier Martinez Canillas
2011-11-03 19:16     ` Tony Lindgren

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.