patch-2.4.19 linux-2.4.19/drivers/char/tty_io.c
Next file: linux-2.4.19/drivers/char/vme_scc.c
Previous file: linux-2.4.19/drivers/char/tpqic02.c
Back to the patch index
Back to the overall index
- Lines: 35
- Date:
Fri Aug 2 17:39:43 2002
- Orig file:
linux-2.4.18/drivers/char/tty_io.c
- Orig date:
Mon Feb 25 11:37:57 2002
diff -urN linux-2.4.18/drivers/char/tty_io.c linux-2.4.19/drivers/char/tty_io.c
@@ -160,6 +160,8 @@
extern void sci_console_init(void);
extern void tx3912_console_init(void);
extern void tx3912_rs_init(void);
+extern void txx927_console_init(void);
+extern void sb1250_serial_console_init(void);
#ifndef MIN
#define MIN(a,b) ((a) < (b) ? (a) : (b))
@@ -601,12 +603,6 @@
read_unlock(&tasklist_lock);
}
-void wait_for_keypress(void)
-{
- struct console *c = console_drivers;
- if (c) c->wait_key(c);
-}
-
void stop_tty(struct tty_struct *tty)
{
if (tty->stopped)
@@ -2249,6 +2245,12 @@
#ifdef CONFIG_SERIAL_TX3912_CONSOLE
tx3912_console_init();
#endif
+#ifdef CONFIG_TXX927_SERIAL_CONSOLE
+ txx927_console_init();
+#endif
+#ifdef CONFIG_SIBYTE_SB1250_DUART_CONSOLE
+ sb1250_serial_console_init();
+#endif
}
static struct tty_driver dev_tty_driver, dev_syscons_driver;
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen (who was at: slshen@lbl.gov)