vga16fb: 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: Antonino A. Daplas <adaplas@gmail.com> Signed-off-by: Paul Mundt <lethal@linux-sh.org>
This commit is contained in:
parent
e4c735af00
commit
4d3c68a1b4
@ -207,7 +207,7 @@ static void vga16fb_pan_var(struct fb_info *info,
|
|||||||
* granularity if someone supports xoffset in bit resolution */
|
* granularity if someone supports xoffset in bit resolution */
|
||||||
vga_io_r(VGA_IS1_RC); /* reset flip-flop */
|
vga_io_r(VGA_IS1_RC); /* reset flip-flop */
|
||||||
vga_io_w(VGA_ATT_IW, VGA_ATC_PEL);
|
vga_io_w(VGA_ATT_IW, VGA_ATC_PEL);
|
||||||
if (var->bits_per_pixel == 8)
|
if (info->var.bits_per_pixel == 8)
|
||||||
vga_io_w(VGA_ATT_IW, (xoffset & 3) << 1);
|
vga_io_w(VGA_ATT_IW, (xoffset & 3) << 1);
|
||||||
else
|
else
|
||||||
vga_io_w(VGA_ATT_IW, xoffset & 7);
|
vga_io_w(VGA_ATT_IW, xoffset & 7);
|
||||||
|
Loading…
Reference in New Issue
Block a user