From: Michael Grzeschik Date: Tue, 3 Aug 2010 09:37:54 +0000 (-0300) Subject: V4L/DVB: mx2_camera: fix for list bufnum in frame_done_emma X-Git-Tag: v3.0~3618^2~29 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=cd9ebdbc0541b4e8ee145c81642d68332f79b932;p=platform%2Fkernel%2Flinux-amlogic.git V4L/DVB: mx2_camera: fix for list bufnum in frame_done_emma The emma uses bufnum 1 and 0. This patch tells the bufqueue to change the next buffer to the next one and not the current one. Otherwise the BUG_ON above will trigger everytime. Signed-off-by: Michael Grzeschik Signed-off-by: Guennadi Liakhovetski Signed-off-by: Mauro Carvalho Chehab --- diff --git a/drivers/media/video/mx2_camera.c b/drivers/media/video/mx2_camera.c index 026bef0..8441eca 100644 --- a/drivers/media/video/mx2_camera.c +++ b/drivers/media/video/mx2_camera.c @@ -1201,7 +1201,7 @@ static void mx27_camera_frame_done_emma(struct mx2_camera_dev *pcdev, buf = list_entry(pcdev->capture.next, struct mx2_buffer, vb.queue); - buf->bufnum = bufnum; + buf->bufnum = !bufnum; list_move_tail(pcdev->capture.next, &pcdev->active_bufs);