fbdev: metronomefb bugfix
authorJaya Kumar <jayakumar.lkml@gmail.com>
Mon, 28 Apr 2008 09:15:36 +0000 (02:15 -0700)
committerLinus Torvalds <torvalds@linux-foundation.org>
Mon, 28 Apr 2008 15:58:40 +0000 (08:58 -0700)
This patch is a bugfix for the use of cfb_* functions instead of sys_*
functions.  sys_* should be used with vmalloced framebuffers.  the previous
cfb_ use would not work for callers of imageblit/etc.

Signed-off-by: Jaya Kumar <jayakumar.lkml@gmail.com>
Cc: "Antonino A. Daplas" <adaplas@pol.net>
Cc: Geert Uytterhoeven <geert@linux-m68k.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
drivers/video/metronomefb.c

index e9a89fd..5602f3e 100644 (file)
@@ -678,7 +678,7 @@ static void metronomefb_fillrect(struct fb_info *info,
 {
        struct metronomefb_par *par = info->par;
 
-       cfb_fillrect(info, rect);
+       sys_fillrect(info, rect);
        metronomefb_dpy_update(par);
 }
 
@@ -687,7 +687,7 @@ static void metronomefb_copyarea(struct fb_info *info,
 {
        struct metronomefb_par *par = info->par;
 
-       cfb_copyarea(info, area);
+       sys_copyarea(info, area);
        metronomefb_dpy_update(par);
 }
 
@@ -696,7 +696,7 @@ static void metronomefb_imageblit(struct fb_info *info,
 {
        struct metronomefb_par *par = info->par;
 
-       cfb_imageblit(info, image);
+       sys_imageblit(info, image);
        metronomefb_dpy_update(par);
 }