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

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

diff -u --recursive --new-file v2.3.20/linux/drivers/video/fbcon-afb.c linux/drivers/video/fbcon-afb.c
@@ -178,7 +178,7 @@
 	dest = p->screen_base+dy*fontheight(p)*width;
 	i = p->var.bits_per_pixel;
 	do {
-	    mymemmove(dest, src, height*fontheight(p)*width);
+	    fb_memmove(dest, src, height*fontheight(p)*width);
 	    src += p->next_plane;
 	    dest += p->next_plane;
 	} while (--i);
@@ -191,7 +191,7 @@
 	    dest = dest0;
 	    j = height*fontheight(p);
 	    do {
-	        mymemmove(dest, src, width);
+	        fb_memmove(dest, src, width);
 	        src += p->next_line;
 	        dest += p->next_line;
 	    } while (--j);
@@ -209,7 +209,7 @@
 	    do {
 	        src -= p->next_line;
 	        dest -= p->next_line;
-	        mymemmove(dest, src, width);
+	        fb_memmove(dest, src, width);
 	    } while (--j);
 	    src0 += p->next_plane;
 	    dest0 += p->next_plane;
@@ -233,9 +233,9 @@
 	j = height*fontheight(p);
 	do {
 	    if (bg & 1)
-	        mymemset(dest, width);
+	        fb_memset255(dest, width);
 	    else
-	        mymemclear(dest, width);
+	        fb_memclear(dest, width);
 	    dest += p->next_line;
 	} while (--j);
 	bg >>= 1;

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