diff options
author | Antonino A. Daplas <adaplas@gmail.com> | 2007-05-08 03:39:04 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-05-08 14:15:30 -0400 |
commit | d9a05f18e00882d5c1fad400a90532754afba9bf (patch) | |
tree | 8ed660263f02826a6b43617db0b7afe1fb995e94 | |
parent | 09aaf268eb1d22eee690d26a913f660e2081597f (diff) |
arcfb: use fb_sys_read()
Since arcfb's framebuffer is vmalloc'ed, use the 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>
-rw-r--r-- | drivers/video/Kconfig | 1 | ||||
-rw-r--r-- | drivers/video/arcfb.c | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/drivers/video/Kconfig b/drivers/video/Kconfig index 85d0e8707ee3..19b7f73ebc49 100644 --- a/drivers/video/Kconfig +++ b/drivers/video/Kconfig | |||
@@ -420,6 +420,7 @@ config FB_ARC | |||
420 | select FB_SYS_FILLRECT | 420 | select FB_SYS_FILLRECT |
421 | select FB_SYS_COPYAREA | 421 | select FB_SYS_COPYAREA |
422 | select FB_SYS_IMAGEBLIT | 422 | select FB_SYS_IMAGEBLIT |
423 | select FB_SYS_FOPS | ||
423 | help | 424 | help |
424 | This enables support for the Arc Monochrome LCD board. The board | 425 | This enables support for the Arc Monochrome LCD board. The board |
425 | is based on the KS-108 lcd controller and is typically a matrix | 426 | is based on the KS-108 lcd controller and is typically a matrix |
diff --git a/drivers/video/arcfb.c b/drivers/video/arcfb.c index c668e56c9272..db15baca3f7b 100644 --- a/drivers/video/arcfb.c +++ b/drivers/video/arcfb.c | |||
@@ -494,6 +494,7 @@ static ssize_t arcfb_write(struct fb_info *info, const char __user *buf, | |||
494 | static struct fb_ops arcfb_ops = { | 494 | static struct fb_ops arcfb_ops = { |
495 | .owner = THIS_MODULE, | 495 | .owner = THIS_MODULE, |
496 | .fb_open = arcfb_open, | 496 | .fb_open = arcfb_open, |
497 | .fb_read = fb_sys_read, | ||
497 | .fb_write = arcfb_write, | 498 | .fb_write = arcfb_write, |
498 | .fb_release = arcfb_release, | 499 | .fb_release = arcfb_release, |
499 | .fb_pan_display = arcfb_pan_display, | 500 | .fb_pan_display = arcfb_pan_display, |