hecubafb: use fb_sys_read()
authorAntonino A. Daplas <adaplas@gmail.com>
Tue, 8 May 2007 07:39:06 +0000 (00:39 -0700)
committerLinus Torvalds <torvalds@woody.linux-foundation.org>
Tue, 8 May 2007 18:15:30 +0000 (11:15 -0700)
Since hecubafb's framebuffer is vmalloc'ed, use fb_sys_read().

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>
drivers/video/Kconfig
drivers/video/hecubafb.c

index 19b7f73ebc496d3436e82dc854f6172c780864fa..5e3492c65ccbc693862a3b75ab93bc04277b1842 100644 (file)
@@ -611,6 +611,7 @@ config FB_HECUBA
        select FB_SYS_FILLRECT
        select FB_SYS_COPYAREA
        select FB_SYS_IMAGEBLIT
+       select FB_SYS_FOPS
        select FB_DEFERRED_IO
        help
          This enables support for the Hecuba board. This driver was tested
index 3ec0e97f36e45522bb8027908d7cc9b8a2f28304..abfcb50364c83f0b77a5b27f8df87eb054b4cb64 100644 (file)
@@ -309,6 +309,7 @@ static ssize_t hecubafb_write(struct fb_info *info, const char __user *buf,
 
 static struct fb_ops hecubafb_ops = {
        .owner          = THIS_MODULE,
+       .fb_read        = fb_sys_read,
        .fb_write       = hecubafb_write,
        .fb_fillrect    = hecubafb_fillrect,
        .fb_copyarea    = hecubafb_copyarea,