aboutsummaryrefslogtreecommitdiff
path: root/drivers/video/au1200fb.c
diff options
context:
space:
mode:
authorManuel Lauss <manuel.lauss@googlemail.com>2011-06-10 15:23:04 +0000
committerPaul Mundt <lethal@linux-sh.org>2011-06-15 15:49:10 +0900
commit4ee58461510221a53080afd02752838f93cc57fc (patch)
tree1f1ab84cae09a8cd62b8c31f37b310513ed792b7 /drivers/video/au1200fb.c
parent8be90b07ac2a07b4f1eb685caa97e88b9f85ef27 (diff)
au1200fb: switch to FB_SYS helpers
Since all video memory is in system ram, use FB_SYS helpers. Signed-off-by: Manuel Lauss <manuel.lauss@googlemail.com> Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'drivers/video/au1200fb.c')
-rw-r--r--drivers/video/au1200fb.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/drivers/video/au1200fb.c b/drivers/video/au1200fb.c
index 4b58f7ba572..b1b16d98c91 100644
--- a/drivers/video/au1200fb.c
+++ b/drivers/video/au1200fb.c
@@ -1502,9 +1502,11 @@ static struct fb_ops au1200fb_fb_ops = {
.fb_set_par = au1200fb_fb_set_par,
.fb_setcolreg = au1200fb_fb_setcolreg,
.fb_blank = au1200fb_fb_blank,
- .fb_fillrect = cfb_fillrect,
- .fb_copyarea = cfb_copyarea,
- .fb_imageblit = cfb_imageblit,
+ .fb_fillrect = sys_fillrect,
+ .fb_copyarea = sys_copyarea,
+ .fb_imageblit = sys_imageblit,
+ .fb_read = fb_sys_read,
+ .fb_write = fb_sys_write,
.fb_sync = NULL,
.fb_ioctl = au1200fb_ioctl,
.fb_mmap = au1200fb_fb_mmap,