Commit c180604a authored by Mauro Carvalho Chehab's avatar Mauro Carvalho Chehab

V4L/DVB (12241): mt9v011: Fix vstart

vstart calculus were wrong. Fix it.
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@redhat.com>
parent e11206e6
......@@ -202,7 +202,7 @@ static void set_res(struct v4l2_subdev *sd)
mt9v011_write(sd, R04_MT9V011_WIDTH, core->width);
mt9v011_write(sd, R05_MT9V011_HBLANK, 771 - core->width);
vstart = 8 + (640 - core->height) / 2;
vstart = 8 + (480 - core->height) / 2;
mt9v011_write(sd, R01_MT9V011_ROWSTART, vstart);
mt9v011_write(sd, R03_MT9V011_HEIGHT, core->height);
mt9v011_write(sd, R06_MT9V011_VBLANK, 508 - core->height);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment