Update of /cvsroot/linuxconsole/ruby/linux/drivers/char
In directory usw-pr-cvs1:/tmp/cvs-serv23944/drivers/char
Modified Files:
vt.c
Log Message:
Don't need to pass in struct tty_driver to create_vt anymore. Plus I removed the need for tty specific stuff in the console display drivers.
Index: vt.c
===================================================================
RCS file: /cvsroot/linuxconsole/ruby/linux/drivers/char/vt.c,v
retrieving revision 1.113
retrieving revision 1.114
diff -u -d -r1.113 -r1.114
--- vt.c 2001/12/08 00:38:09 1.113
+++ vt.c 2001/12/08 00:58:07 1.114
@@ -1499,7 +1499,7 @@
/*
* Mapping and unmapping VT display
*/
-const char *create_vt(struct tty_driver *drv, struct vt_struct *vt, int init)
+const char *create_vt(struct vt_struct *vt, int init)
{
const char *display_desc = vt->vt_sw->con_startup(vt, init);
|