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

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

diff -u --recursive --new-file v2.3.20/linux/drivers/video/fbcon-iplan2p2.c linux/drivers/video/fbcon-iplan2p2.c
@@ -169,7 +169,7 @@
 	/*  Special (but often used) case: Moving whole lines can be
 	 *  done with memmove()
 	 */
-	mymemmove(p->screen_base + dy * p->next_line * fontheight(p),
+	fb_memmove(p->screen_base + dy * p->next_line * fontheight(p),
 		  p->screen_base + sy * p->next_line * fontheight(p),
 		  p->next_line * height * fontheight(p));
     } else {
@@ -201,7 +201,7 @@
 		}
 		if (width > 1) {
 		    for (rows = colsize; rows > 0; --rows) {
-			mymemmove(dst, src, (width>>1)*4);
+			fb_memmove(dst, src, (width>>1)*4);
 			src += bytes;
 			dst += bytes;
 		    }
@@ -227,7 +227,7 @@
 		    for(rows = colsize; rows > 0; --rows) {
 			src -= bytes;
 			dst -= bytes;
-			mymemmove(dst, src, (width>>1)*4);
+			fb_memmove(dst, src, (width>>1)*4);
 		    }
 		}
 		if (width & 1)
@@ -295,7 +295,7 @@
 	/*  Clears are split if the region starts at an odd column or
 	 *  end at an even column. These extra columns are spread
 	 *  across the interleaved planes. All in between can be
-	 *  cleared by normal mymemclear_small(), because both bytes of
+	 *  cleared by normal fb_memclear_small(), because both bytes of
 	 *  the single plane words are affected.
 	 */
 

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