diff options
author | Thomas Abraham <thomas.ab@samsung.com> | 2011-06-14 06:12:26 -0400 |
---|---|---|
committer | Kukjin Kim <kgene.kim@samsung.com> | 2011-07-20 06:10:43 -0400 |
commit | 5822a5df5ee2bbb2a98a4baadf065829e191395f (patch) | |
tree | 1b03ec068a72badee89f78cec25a0bf25600e523 /drivers/tty/serial/s3c6400.c | |
parent | ee430f16251de889ddf8e303970713d9fba9a3f5 (diff) |
serial: Remove redundant console_initcall from s3c and s5p console drivers
Uart port is registered as a console during the driver's probe.
So explict registration of console with console_initcall is
removed.
Signed-off-by: Thomas Abraham <thomas.ab@samsung.com>
[kgene.kim@samsung.com: removed changes of s3c2400 and s3c24a0]
Signed-off-by: Kukjin Kim <kgene.kim@samsung.com>
Diffstat (limited to 'drivers/tty/serial/s3c6400.c')
-rw-r--r-- | drivers/tty/serial/s3c6400.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/drivers/tty/serial/s3c6400.c b/drivers/tty/serial/s3c6400.c index ded26c42ff37..e2f6913d84d5 100644 --- a/drivers/tty/serial/s3c6400.c +++ b/drivers/tty/serial/s3c6400.c | |||
@@ -130,8 +130,6 @@ static struct platform_driver s3c6400_serial_driver = { | |||
130 | }, | 130 | }, |
131 | }; | 131 | }; |
132 | 132 | ||
133 | s3c24xx_console_init(&s3c6400_serial_driver, &s3c6400_uart_inf); | ||
134 | |||
135 | static int __init s3c6400_serial_init(void) | 133 | static int __init s3c6400_serial_init(void) |
136 | { | 134 | { |
137 | return s3c24xx_serial_init(&s3c6400_serial_driver, &s3c6400_uart_inf); | 135 | return s3c24xx_serial_init(&s3c6400_serial_driver, &s3c6400_uart_inf); |