* [PATCH] OMAP2: Serial: Remove arch_initcall dependency
@ 2009-05-20 23:39 Pandita, Vikram
2009-05-21 16:06 ` [APPLIED] " Tony Lindgren
0 siblings, 1 reply; 2+ messages in thread
From: Pandita, Vikram @ 2009-05-20 23:39 UTC (permalink / raw)
To: linux-omap@vger.kernel.org
From: Vikram Pandita <vikram.pandita@ti.com>
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>
---
arch/arm/mach-omap2/serial.c | 22 +++++++++-------------
1 files changed, 9 insertions(+), 13 deletions(-)
diff --git a/arch/arm/mach-omap2/serial.c b/arch/arm/mach-omap2/serial.c
index 4dcf39c..3c2d325 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);
--
1.6.0.3.613.g9f8f13
^ permalink raw reply related [flat|nested] 2+ messages in thread
end of thread, other threads:[~2009-05-21 16:06 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-05-20 23:39 [PATCH] OMAP2: Serial: Remove arch_initcall dependency Pandita, Vikram
2009-05-21 16:06 ` [APPLIED] " Tony Lindgren
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox