Commit 1b402967 authored by Aaro Koskinen's avatar Aaro Koskinen Committed by Greg Kroah-Hartman

staging: xgifb: eliminate fbcon_XGI_fillrect()

fbcon_XGI_fillrect() implementation is trivial and can be replaced with
cfb_fillrect().
Signed-off-by: default avatarAaro Koskinen <aaro.koskinen@iki.fi>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent 85c3c562
......@@ -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;
}
......@@ -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
......@@ -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);
......
......@@ -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,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment