diff options
Diffstat (limited to 'drivers/video')
-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, |