staging: xgifb: eliminate fbcon_XGI_fillrect()
authorAaro Koskinen <aaro.koskinen@iki.fi>
Mon, 28 Feb 2011 18:59:22 +0000 (20:59 +0200)
committerGreg Kroah-Hartman <gregkh@suse.de>
Mon, 28 Feb 2011 23:21:17 +0000 (15:21 -0800)
fbcon_XGI_fillrect() implementation is trivial and can be replaced with
cfb_fillrect().

Signed-off-by: Aaro Koskinen <aaro.koskinen@iki.fi>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
drivers/staging/xgifb/XGI_accel.c
drivers/staging/xgifb/XGI_accel.h
drivers/staging/xgifb/XGI_main.h
drivers/staging/xgifb/XGI_main_26.c

index 968ac04..1e4c06c 100644 (file)
@@ -114,12 +114,3 @@ void XGIfb_syncaccel(void)
     XGI310Sync();
 
 }
-
-void fbcon_XGI_fillrect(struct fb_info *info, const struct fb_fillrect *rect)
-{
-       if (!rect->width || !rect->height)
-               return;
-
-       cfb_fillrect(info, rect);
-       return;
-}
index 836ee40..a1fb5d3 100644 (file)
@@ -478,6 +478,4 @@ int fbcon_XGI_sync(struct fb_info *info);
 
 extern struct video_info xgi_video_info;
 
-void fbcon_XGI_fillrect(struct fb_info *info, const struct fb_fillrect *rect);
-
 #endif
index 15d72ee..39e15de 100644 (file)
@@ -793,8 +793,6 @@ static int      XGIfb_blank(int blank,
 /*static int   XGIfb_mmap(struct fb_info *info, struct file *file,
                           struct vm_area_struct *vma);
 */
-extern void     fbcon_XGI_fillrect(struct fb_info *info,
-                                   const struct fb_fillrect *rect);
 
 static int XGIfb_ioctl(struct fb_info *info, unsigned int cmd,
                            unsigned long arg);
index 6cf2eea..fa97c37 100644 (file)
@@ -1738,7 +1738,7 @@ static struct fb_ops XGIfb_ops = {
        .fb_pan_display = XGIfb_pan_display,
 #endif
        .fb_blank = XGIfb_blank,
-       .fb_fillrect = fbcon_XGI_fillrect,
+       .fb_fillrect = cfb_fillrect,
        .fb_copyarea = cfb_copyarea,
        .fb_imageblit = cfb_imageblit,
        .fb_ioctl = XGIfb_ioctl,