diff options
Diffstat (limited to 'drivers/video/fbdev/core/fbmem.c')
| -rw-r--r-- | drivers/video/fbdev/core/fbmem.c | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/drivers/video/fbdev/core/fbmem.c b/drivers/video/fbdev/core/fbmem.c index 990550930a8e..7ddeb90337bc 100644 --- a/drivers/video/fbdev/core/fbmem.c +++ b/drivers/video/fbdev/core/fbmem.c @@ -1079,7 +1079,7 @@ EXPORT_SYMBOL(fb_blank);  static long do_fb_ioctl(struct fb_info *info, unsigned int cmd,  			unsigned long arg)  { -	struct fb_ops *fb; +	const struct fb_ops *fb;  	struct fb_var_screeninfo var;  	struct fb_fix_screeninfo fix;  	struct fb_cmap cmap_from; @@ -1292,7 +1292,7 @@ static long fb_compat_ioctl(struct file *file, unsigned int cmd,  			    unsigned long arg)  {  	struct fb_info *info = file_fb_info(file); -	struct fb_ops *fb; +	const struct fb_ops *fb;  	long ret = -ENOIOCTLCMD;  	if (!info) |