Commit b4e81b23 authored by Lad, Prabhakar's avatar Lad, Prabhakar Committed by Mauro Carvalho Chehab

[media] media: blackfin: bfin_capture: drop buf_init() callback

this patch drops the buf_init() callback as init
of buf list is not required.
Signed-off-by: default avatarLad, Prabhakar <prabhakar.csengg@gmail.com>
Tested-by: default avatarScott Jiang <scott.jiang.linux@gmail.com>
Signed-off-by: default avatarHans Verkuil <hans.verkuil@cisco.com>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@osg.samsung.com>
parent c0b50d95
...@@ -302,14 +302,6 @@ static int bcap_queue_setup(struct vb2_queue *vq, ...@@ -302,14 +302,6 @@ static int bcap_queue_setup(struct vb2_queue *vq,
return 0; return 0;
} }
static int bcap_buffer_init(struct vb2_buffer *vb)
{
struct bcap_buffer *buf = to_bcap_vb(vb);
INIT_LIST_HEAD(&buf->list);
return 0;
}
static int bcap_buffer_prepare(struct vb2_buffer *vb) static int bcap_buffer_prepare(struct vb2_buffer *vb)
{ {
struct bcap_device *bcap_dev = vb2_get_drv_priv(vb->vb2_queue); struct bcap_device *bcap_dev = vb2_get_drv_priv(vb->vb2_queue);
...@@ -441,7 +433,6 @@ static void bcap_stop_streaming(struct vb2_queue *vq) ...@@ -441,7 +433,6 @@ static void bcap_stop_streaming(struct vb2_queue *vq)
static struct vb2_ops bcap_video_qops = { static struct vb2_ops bcap_video_qops = {
.queue_setup = bcap_queue_setup, .queue_setup = bcap_queue_setup,
.buf_init = bcap_buffer_init,
.buf_prepare = bcap_buffer_prepare, .buf_prepare = bcap_buffer_prepare,
.buf_cleanup = bcap_buffer_cleanup, .buf_cleanup = bcap_buffer_cleanup,
.buf_queue = bcap_buffer_queue, .buf_queue = bcap_buffer_queue,
......
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