aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/media/video/mx1_camera.c
diff options
context:
space:
mode:
authorAndreas Bombe <aeb@debian.org>2010-03-21 15:02:45 -0400
committerMauro Carvalho Chehab <mchehab@redhat.com>2010-05-19 11:57:13 -0400
commitdab7e3106ddd6cbc3b55301228407b9d17ce7773 (patch)
tree1b6caa87522844e7ea8cc01932365201271f1afd /drivers/media/video/mx1_camera.c
parent0a062033f727dc041691bfd768f4cf0598f559a1 (diff)
V4L/DVB: V4L2: Replace loops for finding max buffers in VIDIOC_REQBUFS callbacks
Due to obvious copy and paste coding a number of video capture drivers which implement a limit on the buffer memory decremented the user supplied buffer count in a while loop until it reaches an acceptable value. This is a silly thing to do when the maximum value can be directly computed. Signed-off-by: Andreas Bombe <aeb@debian.org> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/video/mx1_camera.c')
-rw-r--r--drivers/media/video/mx1_camera.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/media/video/mx1_camera.c b/drivers/media/video/mx1_camera.c
index 34a66019190..5c17f9ec3d7 100644
--- a/drivers/media/video/mx1_camera.c
+++ b/drivers/media/video/mx1_camera.c
@@ -139,8 +139,8 @@ static int mx1_videobuf_setup(struct videobuf_queue *vq, unsigned int *count,
139 if (!*count) 139 if (!*count)
140 *count = 32; 140 *count = 32;
141 141
142 while (*size * *count > MAX_VIDEO_MEM * 1024 * 1024) 142 if (*size * *count > MAX_VIDEO_MEM * 1024 * 1024)
143 (*count)--; 143 *count = (MAX_VIDEO_MEM * 1024 * 1024) / *size;
144 144
145 dev_dbg(icd->dev.parent, "count=%d, size=%d\n", *count, *size); 145 dev_dbg(icd->dev.parent, "count=%d, size=%d\n", *count, *size);
146 146