From: Kenn H. <ke...@us...> - 2003-03-12 23:00:51
|
Update of /cvsroot/linux-vax/kernel-2.5/drivers/char In directory sc8-pr-cvs1:/tmp/cvs-serv6794/drivers/char Modified Files: tty_io.c Log Message: Merge with 2.5.39 Index: tty_io.c =================================================================== RCS file: /cvsroot/linux-vax/kernel-2.5/drivers/char/tty_io.c,v retrieving revision 1.7 retrieving revision 1.8 diff -u -r1.7 -r1.8 --- tty_io.c 17 Feb 2003 01:15:01 -0000 1.7 +++ tty_io.c 12 Mar 2003 23:00:44 -0000 1.8 @@ -121,6 +121,8 @@ extern struct tty_driver pts_driver[]; /* Unix98 pty slaves; for /dev/ptmx */ #endif +extern void disable_early_printk(void); + /* * redirect is the pseudo-tty that console output * is redirected to if asked by TIOCCONS. @@ -2185,6 +2187,9 @@ * set up the console device so that later boot sequences can * inform about problems etc.. */ +#ifdef CONFIG_EARLY_PRINTK + disable_early_printk(); +#endif #ifdef CONFIG_VT con_init(); #endif |