aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/plat-omap/devices.c
diff options
context:
space:
mode:
authorSyed Mohammed Khasim <x0khasim@ti.com>2006-12-06 17:14:08 -0800
committerRussell King <rmk+kernel@arm.linux.org.uk>2007-05-05 10:56:45 +0100
commit56a2564185db752d83bbc78be9b1e257bf103444 (patch)
tree63983fbd8306cdc08f0835655527cf79e04370bc /arch/arm/plat-omap/devices.c
parente5c56ed3c9caa6ba717af0a5c23e2c7bf5c97a1f (diff)
downloadkernel_samsung_smdk4412-56a2564185db752d83bbc78be9b1e257bf103444.zip
kernel_samsung_smdk4412-56a2564185db752d83bbc78be9b1e257bf103444.tar.gz
kernel_samsung_smdk4412-56a2564185db752d83bbc78be9b1e257bf103444.tar.bz2
ARM: OMAP: plat-omap changes for 2430 SDP
This patch adds minimal OMAP2430 support to plat-omap files to get the kernel booting on 2430SDP. Signed-off-by: Syed Mohammed Khasim <x0khasim@ti.com> Signed-off-by: Tony Lindgren <tony@atomide.com> Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'arch/arm/plat-omap/devices.c')
-rw-r--r--arch/arm/plat-omap/devices.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/arch/arm/plat-omap/devices.c b/arch/arm/plat-omap/devices.c
index dbc3f44..eeb33fe 100644
--- a/arch/arm/plat-omap/devices.c
+++ b/arch/arm/plat-omap/devices.c
@@ -429,6 +429,10 @@ static inline void omap_init_rng(void) {}
*/
static int __init omap_init_devices(void)
{
+/*
+ * Need to enable relevant once for 2430 SDP
+ */
+#ifndef CONFIG_MACH_OMAP_2430SDP
/* please keep these calls, and their implementations above,
* in alphabetical order so they're easier to sort through.
*/
@@ -438,7 +442,7 @@ static int __init omap_init_devices(void)
omap_init_uwire();
omap_init_wdt();
omap_init_rng();
-
+#endif
return 0;
}
arch_initcall(omap_init_devices);