diff options
author | Christoph Hellwig <hch@lst.de> | 2005-09-06 15:16:59 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2005-09-07 16:57:24 -0700 |
commit | a10077708233becfbae7b0104e1e8c0569359aa7 (patch) | |
tree | 739567ae52a5ac243e3fa7c280b905b17ecf480b /drivers/char | |
parent | 573fc113133e0b0984d2c0090e706c6506661f91 (diff) | |
download | blackbird-obmc-linux-a10077708233becfbae7b0104e1e8c0569359aa7.tar.gz blackbird-obmc-linux-a10077708233becfbae7b0104e1e8c0569359aa7.zip |
[PATCH] move 68360serial.c over use initcalls
this is the last serial driver not using initcalls.
Signed-off-by: Christoph Hellwig <hch@lst.de>
Cc: <jeff@uclinux.org>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'drivers/char')
-rw-r--r-- | drivers/char/tty_io.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/drivers/char/tty_io.c b/drivers/char/tty_io.c index 6e4be3bb2d89..9d657127f313 100644 --- a/drivers/char/tty_io.c +++ b/drivers/char/tty_io.c @@ -153,7 +153,6 @@ static int tty_release(struct inode *, struct file *); int tty_ioctl(struct inode * inode, struct file * file, unsigned int cmd, unsigned long arg); static int tty_fasync(int fd, struct file * filp, int on); -extern void rs_360_init(void); static void release_mem(struct tty_struct *tty, int idx); @@ -2911,11 +2910,6 @@ void __init console_init(void) #ifdef CONFIG_EARLY_PRINTK disable_early_printk(); #endif -#ifdef CONFIG_SERIAL_68360 - /* This is not a console initcall. I know not what it's doing here. - So I haven't moved it. dwmw2 */ - rs_360_init(); -#endif call = __con_initcall_start; while (call < __con_initcall_end) { (*call)(); |