From: Aivils S. <ai...@us...> - 2003-09-29 09:12:18
|
Update of /cvsroot/linuxconsole/ruby/ruby-2.6/drivers/video/console In directory sc8-pr-cvs1:/tmp/cvs-serv15552/ruby-2.6/drivers/video/console Modified Files: dummycon.c vgacon.c Log Message: reanime /dev/vc/0, keyboard leds Index: dummycon.c =================================================================== RCS file: /cvsroot/linuxconsole/ruby/ruby-2.6/drivers/video/console/dummycon.c,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- dummycon.c 16 Sep 2003 06:54:42 -0000 1.3 +++ dummycon.c 29 Sep 2003 08:50:56 -0000 1.4 @@ -95,7 +95,7 @@ printk("Console: mono %s %dx%d vc:%d-%d\n", display_desc, dummy_vt.default_mode->vc_cols, dummy_vt.default_mode->vc_rows, - dummy_vt.first_vc, dummy_vt.first_vc + dummy_vt.vc_count - 1); + dummy_vt.first_vc + 1, dummy_vt.first_vc + dummy_vt.vc_count); return 0; } @@ -119,7 +119,7 @@ printk("Console: mono %s %dx%d vc:%d-%d\n", display_desc, vt->default_mode->vc_cols, vt->default_mode->vc_rows, - vt->first_vc, vt->first_vc + vt->vc_count - 1); + vt->first_vc + 1, vt->first_vc + vt->vc_count); return 0; } Index: vgacon.c =================================================================== RCS file: /cvsroot/linuxconsole/ruby/ruby-2.6/drivers/video/console/vgacon.c,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- vgacon.c 12 Sep 2003 08:33:21 -0000 1.2 +++ vgacon.c 29 Sep 2003 08:50:56 -0000 1.3 @@ -1099,7 +1099,7 @@ vga_vt.default_mode->vc_can_do_color ? "Colour" : "Mono", display_desc, vga_vt.default_mode->vc_cols, vga_vt.default_mode->vc_rows, - vga_vt.first_vc, vga_vt.first_vc + vga_vt.vc_count - 1); + vga_vt.first_vc + 1, vga_vt.first_vc + vga_vt.vc_count); return 0; } |