From: Aivils S. <ai...@us...> - 2003-10-28 07:15:46
|
Update of /cvsroot/linuxconsole/ruby/ruby-2.6/drivers/video/console In directory sc8-pr-cvs1:/tmp/cvs-serv18410/ruby-2.6/drivers/video/console Modified Files: dummycon.c fbcon.c Log Message: vt_list instead vt_cons for future release_vt() Index: dummycon.c =================================================================== RCS file: /cvsroot/linuxconsole/ruby/ruby-2.6/drivers/video/console/dummycon.c,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- dummycon.c 29 Sep 2003 08:50:56 -0000 1.4 +++ dummycon.c 28 Oct 2003 07:14:53 -0000 1.5 @@ -31,7 +31,6 @@ #define MAX_DUMB_CONSOLES 16 static unsigned long dumb_num = 0; -static unsigned long dumb_vc_count = 0; static struct vt_struct dummy_vt; static struct vc_data default_mode; Index: fbcon.c =================================================================== RCS file: /cvsroot/linuxconsole/ruby/ruby-2.6/drivers/video/console/fbcon.c,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- fbcon.c 14 Oct 2003 08:32:10 -0000 1.2 +++ fbcon.c 28 Oct 2003 07:14:53 -0000 1.3 @@ -2280,7 +2280,7 @@ if(!vt) return -ENODEV; - + vc = vt->default_mode; vc->vc_cols = info->var.xres/vc->vc_font.width; vc->vc_rows = info->var.yres/vc->vc_font.height; |