aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/video/fbmem.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/video/fbmem.c')
-rw-r--r--drivers/video/fbmem.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/video/fbmem.c b/drivers/video/fbmem.c
index 08c292d9c401..7b72841222df 100644
--- a/drivers/video/fbmem.c
+++ b/drivers/video/fbmem.c
@@ -588,7 +588,7 @@ fb_read(struct file *file, char __user *buf, size_t count, loff_t *ppos)
588 return -EPERM; 588 return -EPERM;
589 589
590 if (info->fbops->fb_read) 590 if (info->fbops->fb_read)
591 return info->fbops->fb_read(file, buf, count, ppos); 591 return info->fbops->fb_read(info, buf, count, ppos);
592 592
593 total_size = info->screen_size; 593 total_size = info->screen_size;
594 594
@@ -663,7 +663,7 @@ fb_write(struct file *file, const char __user *buf, size_t count, loff_t *ppos)
663 return -EPERM; 663 return -EPERM;
664 664
665 if (info->fbops->fb_write) 665 if (info->fbops->fb_write)
666 return info->fbops->fb_write(file, buf, count, ppos); 666 return info->fbops->fb_write(info, buf, count, ppos);
667 667
668 total_size = info->screen_size; 668 total_size = info->screen_size;
669 669