aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/auxdisplay
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/auxdisplay')
-rw-r--r--drivers/auxdisplay/Kconfig4
-rw-r--r--drivers/auxdisplay/cfag12864bfb.c8
2 files changed, 9 insertions, 3 deletions
diff --git a/drivers/auxdisplay/Kconfig b/drivers/auxdisplay/Kconfig
index 2e18a63ead36..ea4fe3e48f33 100644
--- a/drivers/auxdisplay/Kconfig
+++ b/drivers/auxdisplay/Kconfig
@@ -68,6 +68,10 @@ config CFAG12864B
68 depends on X86 68 depends on X86
69 depends on FB 69 depends on FB
70 depends on KS0108 70 depends on KS0108
71 select FB_SYS_FILLRECT
72 select FB_SYS_COPYAREA
73 select FB_SYS_IMAGEBLIT
74 select FB_SYS_FOPS
71 default n 75 default n
72 ---help--- 76 ---help---
73 If you have a Crystalfontz 128x64 2-color LCD, cfag12864b Series, 77 If you have a Crystalfontz 128x64 2-color LCD, cfag12864b Series,
diff --git a/drivers/auxdisplay/cfag12864bfb.c b/drivers/auxdisplay/cfag12864bfb.c
index 66fafbb1d087..307c190699e0 100644
--- a/drivers/auxdisplay/cfag12864bfb.c
+++ b/drivers/auxdisplay/cfag12864bfb.c
@@ -73,9 +73,11 @@ static int cfag12864bfb_mmap(struct fb_info *info, struct vm_area_struct *vma)
73 73
74static struct fb_ops cfag12864bfb_ops = { 74static struct fb_ops cfag12864bfb_ops = {
75 .owner = THIS_MODULE, 75 .owner = THIS_MODULE,
76 .fb_fillrect = cfb_fillrect, 76 .fb_read = fb_sys_read,
77 .fb_copyarea = cfb_copyarea, 77 .fb_write = fb_sys_write,
78 .fb_imageblit = cfb_imageblit, 78 .fb_fillrect = sys_fillrect,
79 .fb_copyarea = sys_copyarea,
80 .fb_imageblit = sys_imageblit,
79 .fb_mmap = cfag12864bfb_mmap, 81 .fb_mmap = cfag12864bfb_mmap,
80}; 82};
81 83