mirror of
https://github.com/FEX-Emu/linux.git
synced 2024-12-28 20:37:27 +00:00
mb862xxfb: 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> Cc: Anatolij Gustschin <agust@denx.de> Signed-off-by: Paul Mundt <lethal@linux-sh.org>
This commit is contained in:
parent
3362903cad
commit
f316fe726a
@ -278,7 +278,7 @@ static int mb862xxfb_pan(struct fb_var_screeninfo *var,
|
||||
reg = pack(var->yoffset, var->xoffset);
|
||||
outreg(disp, GC_L0WY_L0WX, reg);
|
||||
|
||||
reg = pack(var->yres_virtual, var->xres_virtual);
|
||||
reg = pack(info->var.yres_virtual, info->var.xres_virtual);
|
||||
outreg(disp, GC_L0WH_L0WW, reg);
|
||||
return 0;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user