Commit e6641c80 authored by Magnus Damm's avatar Magnus Damm Committed by Mauro Carvalho Chehab

V4L/DVB (13671): sh_mobile_ceu_camera: Remove frame size page alignment

This patch updates the SuperH Mobile CEU driver to
not page align the frame size. Useful in the case of
USERPTR with non-page aligned frame sizes and offsets.
Signed-off-by: default avatarMagnus Damm <damm@opensource.se>
Signed-off-by: default avatarGuennadi Liakhovetski <g.liakhovetski@gmx.de>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@redhat.com>
parent 858424b9
...@@ -206,13 +206,13 @@ static int sh_mobile_ceu_videobuf_setup(struct videobuf_queue *vq, ...@@ -206,13 +206,13 @@ static int sh_mobile_ceu_videobuf_setup(struct videobuf_queue *vq,
if (bytes_per_line < 0) if (bytes_per_line < 0)
return bytes_per_line; return bytes_per_line;
*size = PAGE_ALIGN(bytes_per_line * icd->user_height); *size = bytes_per_line * icd->user_height;
if (0 == *count) if (0 == *count)
*count = 2; *count = 2;
if (pcdev->video_limit) { if (pcdev->video_limit) {
while (*size * *count > pcdev->video_limit) while (PAGE_ALIGN(*size) * *count > pcdev->video_limit)
(*count)--; (*count)--;
} }
......
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