提交 72f1fc33 编写于 作者: M Marek Szyprowski 提交者: Mauro Carvalho Chehab

[media] v4l2: vb2: simplify __vb2_queue_free function

__vb2_queue_free function doesn't really return anything useful. This patch
removes support for the return value to simplify the code.
Signed-off-by: NMarek Szyprowski <m.szyprowski@samsung.com>
Signed-off-by: NKyungmin Park <kyungmin.park@samsung.com>
Signed-off-by: NMauro Carvalho Chehab <mchehab@redhat.com>
上级 31901a07
......@@ -227,7 +227,7 @@ static void __vb2_free_mem(struct vb2_queue *q)
* and return the queue to an uninitialized state. Might be called even if the
* queue has already been freed.
*/
static int __vb2_queue_free(struct vb2_queue *q)
static void __vb2_queue_free(struct vb2_queue *q)
{
unsigned int buffer;
......@@ -251,8 +251,6 @@ static int __vb2_queue_free(struct vb2_queue *q)
q->num_buffers = 0;
q->memory = 0;
return 0;
}
/**
......@@ -505,9 +503,7 @@ int vb2_reqbufs(struct vb2_queue *q, struct v4l2_requestbuffers *req)
return -EBUSY;
}
ret = __vb2_queue_free(q);
if (ret != 0)
return ret;
__vb2_queue_free(q);
/*
* In case of REQBUFS(0) return immediately without calling
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册