From: Aivils S. <ai...@us...> - 2004-02-12 06:37:45
|
Update of /cvsroot/linuxconsole/ruby/ruby-2.6/include/linux In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12910/ruby-2.6/include/linux Modified Files: vt_kern.h Log Message: vt is a class. fbdev and fbcon load in any order. Index: vt_kern.h =================================================================== RCS file: /cvsroot/linuxconsole/ruby/ruby-2.6/include/linux/vt_kern.h,v retrieving revision 1.7 retrieving revision 1.8 diff -u -d -r1.7 -r1.8 --- vt_kern.h 9 Feb 2004 07:33:28 -0000 1.7 +++ vt_kern.h 12 Feb 2004 06:33:05 -0000 1.8 @@ -246,7 +246,7 @@ unsigned char vt_ledstate; unsigned char vt_ledioctl; char *display_desc; - struct device dev; /* Generic device interface */ + struct class_device dev; /* Generic device interface */ }; extern struct list_head vt_list; @@ -330,4 +330,9 @@ /* vt_sysfs.c*/ int __init vt_create_sysfs_dev_files (struct vt_struct *vt); void __init vt_sysfs_init(void); +/* vt_proc.c */ +#ifdef CONFIG_PROC_FS +extern int vt_proc_attach(struct vt_struct *vt); +extern int vt_proc_detach(struct vt_struct *vt); +#endif #endif /* _VT_KERN_H */ |