aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-omap2/serial.c
diff options
context:
space:
mode:
authorVikram Pandita <vikram.pandita@ti.com>2009-05-28 14:03:59 -0700
committerTony Lindgren <tony@atomide.com>2009-05-28 14:03:59 -0700
commit2aa57be2d9e400f498cf0f0636069a81035e06b9 (patch)
tree8b7a8127686c13a3226a48b9f73280b949d0fb06 /arch/arm/mach-omap2/serial.c
parentARM: OMAP2/3: Remove L4_WK_OMAP_BASE, L4_PER_OMAP_BASE, L4_EMU_BASE, L3_OMAP_BASE (diff)
downloadlinux-dev-2aa57be2d9e400f498cf0f0636069a81035e06b9.tar.xz
linux-dev-2aa57be2d9e400f498cf0f0636069a81035e06b9.zip
ARM: OMAP2/3: Serial: Remove arch_initcall dependency
Move platform_device_register() for serial device to omap_serial_init() There is no need to have arch_initcall() dependency in serial as already board files call the function omap_serial_init() Signed-off-by: Vikram Pandita <vikram.pandita@ti.com> Signed-off-by: Tony Lindgren <tony@atomide.com>
Diffstat (limited to 'arch/arm/mach-omap2/serial.c')
-rw-r--r--arch/arm/mach-omap2/serial.c22
1 files changed, 9 insertions, 13 deletions
diff --git a/arch/arm/mach-omap2/serial.c b/arch/arm/mach-omap2/serial.c
index 4dcf39c285b9..3c2d325d3dca 100644
--- a/arch/arm/mach-omap2/serial.c
+++ b/arch/arm/mach-omap2/serial.c
@@ -98,6 +98,14 @@ void omap_serial_enable_clocks(int enable)
}
}
+static struct platform_device serial_device = {
+ .name = "serial8250",
+ .id = PLAT8250_DEV_PLATFORM,
+ .dev = {
+ .platform_data = serial_platform_data,
+ },
+};
+
void __init omap_serial_init(void)
{
int i;
@@ -142,18 +150,6 @@ void __init omap_serial_init(void)
omap_serial_reset(p);
}
-}
-static struct platform_device serial_device = {
- .name = "serial8250",
- .id = PLAT8250_DEV_PLATFORM,
- .dev = {
- .platform_data = serial_platform_data,
- },
-};
-
-static int __init omap_init(void)
-{
- return platform_device_register(&serial_device);
+ platform_device_register(&serial_device);
}
-arch_initcall(omap_init);