patch-2.3.21 linux/drivers/video/fbcon-iplan2p4.c
Next file: linux/drivers/video/fbcon-iplan2p8.c
Previous file: linux/drivers/video/fbcon-iplan2p2.c
Back to the patch index
Back to the overall index
- Lines: 36
- Date:
Mon Oct 11 10:26:52 1999
- Orig file:
v2.3.20/linux/drivers/video/fbcon-iplan2p4.c
- Orig date:
Thu Feb 25 10:02:12 1999
diff -u --recursive --new-file v2.3.20/linux/drivers/video/fbcon-iplan2p4.c linux/drivers/video/fbcon-iplan2p4.c
@@ -177,7 +177,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 {
@@ -210,7 +210,7 @@
}
if (width > 1) {
for(rows = colsize; rows > 0; --rows) {
- mymemmove(dst, src, (width>>1)*8);
+ fb_memmove(dst, src, (width>>1)*8);
src += bytes;
dst += bytes;
}
@@ -236,7 +236,7 @@
for(rows = colsize; rows > 0; --rows) {
src -= bytes;
dst -= bytes;
- mymemmove(dst, src, (width>>1)*8);
+ fb_memmove(dst, src, (width>>1)*8);
}
}
if (width & 1) {
@@ -305,7 +305,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)