[media] mx2_camera: Fix sizeimage computation in try_fmt()

The try_fmt() handler restricts the image width based on the hardware
limits and updates the bytesperline value, but doesn't update sizeimage.
Fix it.

Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Signed-off-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
This commit is contained in:
Laurent Pinchart 2012-03-21 08:03:20 -03:00 коммит произвёл Mauro Carvalho Chehab
Родитель 9ce3ce4d4a
Коммит 584943aa06
1 изменённых файлов: 1 добавлений и 0 удалений

Просмотреть файл

@ -1416,6 +1416,7 @@ static int mx2_camera_try_fmt(struct soc_camera_device *icd,
pix->bytesperline = soc_mbus_bytes_per_line(pix->width,
xlate->host_fmt);
BUG_ON(pix->bytesperline < 0);
pix->sizeimage = pix->height * pix->bytesperline;
}
}