summaryrefslogtreecommitdiffstats
path: root/drivers/video/fbcon-mac.c
diff options
context:
space:
mode:
authorRalf Baechle <ralf@linux-mips.org>1999-12-04 03:58:56 +0000
committerRalf Baechle <ralf@linux-mips.org>1999-12-04 03:58:56 +0000
commit1d67e90f19a7acfd9a05dc59678e7d0c5090bd0d (patch)
tree357efc7b93f8f5102110d20d293f41360ec212fc /drivers/video/fbcon-mac.c
parentaea27b2e18d69af87e673972246e66657b4fa274 (diff)
Merge with Linux 2.3.21.
Diffstat (limited to 'drivers/video/fbcon-mac.c')
-rw-r--r--drivers/video/fbcon-mac.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/drivers/video/fbcon-mac.c b/drivers/video/fbcon-mac.c
index 2c6486c41..58deaff54 100644
--- a/drivers/video/fbcon-mac.c
+++ b/drivers/video/fbcon-mac.c
@@ -62,7 +62,7 @@ void fbcon_mac_bmove(struct display *p, int sy, int sx, int dy, int dx,
if( sx == 0 && width == p->conp->vc_cols) {
s = height * fontheight(p) * p->next_line;
- mymemmove(dest, src, s);
+ fb_memmove(dest, src, s);
return;
}
@@ -158,7 +158,7 @@ void fbcon_mac_bmove(struct display *p, int sy, int sx, int dy, int dx,
plot_pixel_mac(p, get_pixel_mac(p, j+(dx-sx), i+(dy-sy)), j, i);
if (j < r) {
- mymemmove(dest, src, s);
+ fb_memmove(dest, src, s);
if (move_up) {
dest += p->next_line;
src += p->next_line;
@@ -202,9 +202,9 @@ void fbcon_mac_clear(struct vc_data *conp, struct display *p, int sy, int sx,
if( sx == 0 && width == p->conp->vc_cols) {
s = height * fontheight(p) * p->next_line;
if (inverse)
- mymemclear(dest, s);
+ fb_memclear(dest, s);
else
- mymemset(dest, s);
+ fb_memset255(dest, s);
}
l = sx * fontwidth(p);
@@ -251,9 +251,9 @@ void fbcon_mac_clear(struct vc_data *conp, struct display *p, int sy, int sx,
if (j < r) {
if (PIXEL_WHITE_MAC == pixel)
- mymemclear(dest, s);
+ fb_memclear(dest, s);
else
- mymemset(dest, s);
+ fb_memset255(dest, s);
dest += p->next_line;
j += w;
}