patch-2.3.21 linux/drivers/video/fbcon-ilbm.c

Next file: linux/drivers/video/fbcon-iplan2p2.c
Previous file: linux/drivers/video/fbcon-cfb8.c
Back to the patch index
Back to the overall index

diff -u --recursive --new-file v2.3.20/linux/drivers/video/fbcon-ilbm.c linux/drivers/video/fbcon-ilbm.c
@@ -45,7 +45,7 @@
 		      int height, int width)
 {
     if (sx == 0 && dx == 0 && width == p->next_plane)
-	mymemmove(p->screen_base+dy*fontheight(p)*p->next_line,
+	fb_memmove(p->screen_base+dy*fontheight(p)*p->next_line,
 		  p->screen_base+sy*fontheight(p)*p->next_line,
 		  height*fontheight(p)*p->next_line);
     else {
@@ -56,7 +56,7 @@
 	    src = p->screen_base+sy*fontheight(p)*p->next_line+sx;
 	    dest = p->screen_base+dy*fontheight(p)*p->next_line+dx;
 	    for (i = p->var.bits_per_pixel*height*fontheight(p); i--;) {
-		mymemmove(dest, src, width);
+		fb_memmove(dest, src, width);
 		src += p->next_plane;
 		dest += p->next_plane;
 	    }
@@ -66,7 +66,7 @@
 	    for (i = p->var.bits_per_pixel*height*fontheight(p); i--;) {
 		src -= p->next_plane;
 		dest -= p->next_plane;
-		mymemmove(dest, src, width);
+		fb_memmove(dest, src, width);
 	    }
 	}
     }
@@ -86,9 +86,9 @@
 	bg = bg0;
 	for (i = p->var.bits_per_pixel; i--; dest += p->next_plane) {
 	    if (bg & 1)
-		mymemset(dest, width);
+		fb_memset255(dest, width);
 	    else
-		mymemclear(dest, width);
+		fb_memclear(dest, width);
 	    bg >>= 1;
 	}
     }

FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen (who was at: slshen@lbl.gov)