From: James S. <jsi...@us...> - 2001-12-08 00:58:10
|
Update of /cvsroot/linuxconsole/ruby/linux/include/linux In directory usw-pr-cvs1:/tmp/cvs-serv23944/include/linux Modified Files: vt_kern.h 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_kern.h =================================================================== RCS file: /cvsroot/linuxconsole/ruby/linux/include/linux/vt_kern.h,v retrieving revision 1.61 retrieving revision 1.62 diff -u -d -r1.61 -r1.62 --- vt_kern.h 2001/10/04 02:46:33 1.61 +++ vt_kern.h 2001/12/08 00:58:07 1.62 @@ -250,7 +250,7 @@ /* vt.c */ struct console_font_op; -const char* create_vt(struct tty_driver *drv, struct vt_struct *vt, int init); +const char* create_vt(struct vt_struct *vt, int init); int release_vt(struct vt_struct *vt); struct vc_data* find_vc(int currcons); struct vc_data* vc_allocate(unsigned int console); |