summaryrefslogtreecommitdiffstats
path: root/drivers/video/fbcon-iplan2p2.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/video/fbcon-iplan2p2.c')
-rw-r--r--drivers/video/fbcon-iplan2p2.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/video/fbcon-iplan2p2.c b/drivers/video/fbcon-iplan2p2.c
index 0dfdc6107..8be581507 100644
--- a/drivers/video/fbcon-iplan2p2.c
+++ b/drivers/video/fbcon-iplan2p2.c
@@ -169,7 +169,7 @@ void fbcon_iplan2p2_bmove(struct display *p, int sy, int sx, int dy, int dx,
/* 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 @@ void fbcon_iplan2p2_bmove(struct display *p, int sy, int sx, int dy, int dx,
}
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 @@ void fbcon_iplan2p2_bmove(struct display *p, int sy, int sx, int dy, int dx,
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 @@ void fbcon_iplan2p2_clear(struct vc_data *conp, struct display *p, int sy,
/* 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.
*/