diff options
Diffstat (limited to 'drivers/video/sh_mobile_lcdcfb.c')
-rw-r--r-- | drivers/video/sh_mobile_lcdcfb.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/drivers/video/sh_mobile_lcdcfb.c b/drivers/video/sh_mobile_lcdcfb.c index c81ee00c54d7..e339d829183c 100644 --- a/drivers/video/sh_mobile_lcdcfb.c +++ b/drivers/video/sh_mobile_lcdcfb.c | |||
@@ -499,9 +499,11 @@ static struct fb_fix_screeninfo sh_mobile_lcdc_fix = { | |||
499 | 499 | ||
500 | static struct fb_ops sh_mobile_lcdc_ops = { | 500 | static struct fb_ops sh_mobile_lcdc_ops = { |
501 | .fb_setcolreg = sh_mobile_lcdc_setcolreg, | 501 | .fb_setcolreg = sh_mobile_lcdc_setcolreg, |
502 | .fb_fillrect = cfb_fillrect, | 502 | .fb_read = fb_sys_read, |
503 | .fb_copyarea = cfb_copyarea, | 503 | .fb_write = fb_sys_write, |
504 | .fb_imageblit = cfb_imageblit, | 504 | .fb_fillrect = sys_fillrect, |
505 | .fb_copyarea = sys_copyarea, | ||
506 | .fb_imageblit = sys_imageblit, | ||
505 | }; | 507 | }; |
506 | 508 | ||
507 | static int sh_mobile_lcdc_set_bpp(struct fb_var_screeninfo *var, int bpp) | 509 | static int sh_mobile_lcdc_set_bpp(struct fb_var_screeninfo *var, int bpp) |