mirror of
https://github.com/FEX-Emu/linux.git
synced 2025-02-05 18:57:51 +00:00
staging: xgifb: eliminate fbcon_XGI_fillrect()
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>
This commit is contained in:
parent
85c3c562aa
commit
1b402967bc
@ -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,
|
||||
|
Loading…
x
Reference in New Issue
Block a user