aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--drivers/video/Kconfig7
-rw-r--r--drivers/video/au1200fb.c8
2 files changed, 9 insertions, 6 deletions
diff --git a/drivers/video/Kconfig b/drivers/video/Kconfig
index 549b960667c8..5e19de97242a 100644
--- a/drivers/video/Kconfig
+++ b/drivers/video/Kconfig
@@ -1756,9 +1756,10 @@ config FB_AU1100
1756config FB_AU1200 1756config FB_AU1200
1757 bool "Au1200 LCD Driver" 1757 bool "Au1200 LCD Driver"
1758 depends on (FB = y) && MIPS && SOC_AU1200 1758 depends on (FB = y) && MIPS && SOC_AU1200
1759 select FB_CFB_FILLRECT 1759 select FB_SYS_FILLRECT
1760 select FB_CFB_COPYAREA 1760 select FB_SYS_COPYAREA
1761 select FB_CFB_IMAGEBLIT 1761 select FB_SYS_IMAGEBLIT
1762 select FB_SYS_FOPS
1762 help 1763 help
1763 This is the framebuffer driver for the AMD Au1200 SOC. It can drive 1764 This is the framebuffer driver for the AMD Au1200 SOC. It can drive
1764 various panels and CRTs by passing in kernel cmd line option 1765 various panels and CRTs by passing in kernel cmd line option
diff --git a/drivers/video/au1200fb.c b/drivers/video/au1200fb.c
index 4b58f7ba5728..b1b16d98c919 100644
--- a/drivers/video/au1200fb.c
+++ b/drivers/video/au1200fb.c
@@ -1502,9 +1502,11 @@ static struct fb_ops au1200fb_fb_ops = {
1502 .fb_set_par = au1200fb_fb_set_par, 1502 .fb_set_par = au1200fb_fb_set_par,
1503 .fb_setcolreg = au1200fb_fb_setcolreg, 1503 .fb_setcolreg = au1200fb_fb_setcolreg,
1504 .fb_blank = au1200fb_fb_blank, 1504 .fb_blank = au1200fb_fb_blank,
1505 .fb_fillrect = cfb_fillrect, 1505 .fb_fillrect = sys_fillrect,
1506 .fb_copyarea = cfb_copyarea, 1506 .fb_copyarea = sys_copyarea,
1507 .fb_imageblit = cfb_imageblit, 1507 .fb_imageblit = sys_imageblit,
1508 .fb_read = fb_sys_read,
1509 .fb_write = fb_sys_write,
1508 .fb_sync = NULL, 1510 .fb_sync = NULL,
1509 .fb_ioctl = au1200fb_ioctl, 1511 .fb_ioctl = au1200fb_ioctl,
1510 .fb_mmap = au1200fb_fb_mmap, 1512 .fb_mmap = au1200fb_fb_mmap,