Update of /cvsroot/linux-mips/linux/drivers/video
In directory usw-pr-cvs1:/tmp/cvs-serv893
Modified Files:
maxinefb.c pmag-ba-fb.c pmagb-b-fb.c
Log Message:
Fix slow scrolling on DECstations.
Index: maxinefb.c
===================================================================
RCS file: /cvsroot/linux-mips/linux/drivers/video/maxinefb.c,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- maxinefb.c 2001/09/06 17:00:46 1.1
+++ maxinefb.c 2001/09/28 16:27:59 1.2
@@ -301,7 +301,7 @@
display->next_line = fix.line_length;
display->can_soft_blank = 0;
display->inverse = 0;
-
+ display->scrollmode = SCROLL_YREDRAW;
display->dispsw = &fbcon_cfb8;
}
Index: pmag-ba-fb.c
===================================================================
RCS file: /cvsroot/linux-mips/linux/drivers/video/pmag-ba-fb.c,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- pmag-ba-fb.c 2001/09/13 17:05:53 1.3
+++ pmag-ba-fb.c 2001/09/28 16:27:59 1.4
@@ -324,7 +324,7 @@
display->next_line = fix.line_length;
display->can_soft_blank = 0;
display->inverse = 0;
-
+ display->scrollmode = SCROLL_YREDRAW;
display->dispsw = &fbcon_cfb8;
}
Index: pmagb-b-fb.c
===================================================================
RCS file: /cvsroot/linux-mips/linux/drivers/video/pmagb-b-fb.c,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- pmagb-b-fb.c 2001/09/13 17:05:53 1.3
+++ pmagb-b-fb.c 2001/09/28 16:27:59 1.4
@@ -327,7 +327,7 @@
display->next_line = fix.line_length;
display->can_soft_blank = 0;
display->inverse = 0;
-
+ display->scrollmode = SCROLL_YREDRAW;
display->dispsw = &fbcon_cfb8;
}
|