summaryrefslogtreecommitdiff
path: root/drivers/video/vfb.c
diff options
context:
space:
mode:
authorAntonino A. Daplas <adaplas@gmail.com>2007-05-08 07:39:07 (GMT)
committerLinus Torvalds <torvalds@woody.linux-foundation.org>2007-05-08 18:15:30 (GMT)
commit52102c07a68a26fe6f8926e6a8497b577655f18a (patch)
treee2c3db6ff07cd23ed13f6f31ef5787025b18f135 /drivers/video/vfb.c
parent28d4564bfd28e9fc9fe33695c431e3c3601faeb4 (diff)
downloadlinux-52102c07a68a26fe6f8926e6a8497b577655f18a.tar.xz
vfb: use fb_sys_read() and fb_sys_write()
Since vfb's framebuffer is vmalloc'ed, use the fb_sys_read() and fb_sys_write(). Signed-off-by: Antonino Daplas <adaplas@gmail.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/video/vfb.c')
-rw-r--r--drivers/video/vfb.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/video/vfb.c b/drivers/video/vfb.c
index 1293c20..64ee78c 100644
--- a/drivers/video/vfb.c
+++ b/drivers/video/vfb.c
@@ -84,6 +84,8 @@ static int vfb_mmap(struct fb_info *info,
struct vm_area_struct *vma);
static struct fb_ops vfb_ops = {
+ .fb_read = fb_sys_read,
+ .fb_write = fb_sys_write,
.fb_check_var = vfb_check_var,
.fb_set_par = vfb_set_par,
.fb_setcolreg = vfb_setcolreg,