aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/video/vfb.c
diff options
context:
space:
mode:
authorLaurent Pinchart <laurent.pinchart@ideasonboard.com>2011-05-25 05:34:52 -0400
committerLaurent Pinchart <laurent.pinchart@ideasonboard.com>2011-08-19 04:35:27 -0400
commit2883cebabbc4efc00408024d284a0230ad3af8a0 (patch)
tree9954c7e6165642e102551622155bb36e07955f7f /drivers/video/vfb.c
parent4541dbe154c0703cf47c43389b3544884f5f3522 (diff)
vfb: use display information in info not in var for panning
We must not use any information in the passed var besides xoffset, yoffset and vmode as otherwise applications might abuse it. Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Diffstat (limited to 'drivers/video/vfb.c')
-rw-r--r--drivers/video/vfb.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/video/vfb.c b/drivers/video/vfb.c
index bc67251f1a2f..bf2f78065cf9 100644
--- a/drivers/video/vfb.c
+++ b/drivers/video/vfb.c
@@ -395,8 +395,8 @@ static int vfb_pan_display(struct fb_var_screeninfo *var,
395 || var->xoffset) 395 || var->xoffset)
396 return -EINVAL; 396 return -EINVAL;
397 } else { 397 } else {
398 if (var->xoffset + var->xres > info->var.xres_virtual || 398 if (var->xoffset + info->var.xres > info->var.xres_virtual ||
399 var->yoffset + var->yres > info->var.yres_virtual) 399 var->yoffset + info->var.yres > info->var.yres_virtual)
400 return -EINVAL; 400 return -EINVAL;
401 } 401 }
402 info->var.xoffset = var->xoffset; 402 info->var.xoffset = var->xoffset;