Skip to content

Commit

Permalink
[media] vb2: change result code of buf_finish to void
Browse files Browse the repository at this point in the history
The buf_finish op should always work, so change the return type to void.
Update the few drivers that use it.

Signed-off-by: Hans Verkuil <hans.verkuil@cisco.com>
Acked-by: Pawel Osciak <pawel@osciak.com>
Reviewed-by: Pawel Osciak <pawel@osciak.com>
Signed-off-by: Mauro Carvalho Chehab <m.chehab@samsung.com>
  • Loading branch information
Hans Verkuil authored and Mauro Carvalho Chehab committed Mar 11, 2014
1 parent b5b4541 commit 0647064
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 19 deletions.
3 changes: 1 addition & 2 deletions drivers/media/parport/bw-qcam.c
Original file line number Diff line number Diff line change
Expand Up @@ -667,7 +667,7 @@ static void buffer_queue(struct vb2_buffer *vb)
vb2_buffer_done(vb, VB2_BUF_STATE_DONE);
}

static int buffer_finish(struct vb2_buffer *vb)
static void buffer_finish(struct vb2_buffer *vb)
{
struct qcam *qcam = vb2_get_drv_priv(vb->vb2_queue);
void *vbuf = vb2_plane_vaddr(vb, 0);
Expand All @@ -691,7 +691,6 @@ static int buffer_finish(struct vb2_buffer *vb)
if (len != size)
vb->state = VB2_BUF_STATE_ERROR;
vb2_set_plane_payload(vb, 0, len);
return 0;
}

static struct vb2_ops qcam_video_qops = {
Expand Down
4 changes: 1 addition & 3 deletions drivers/media/pci/sta2x11/sta2x11_vip.c
Original file line number Diff line number Diff line change
Expand Up @@ -327,7 +327,7 @@ static void buffer_queue(struct vb2_buffer *vb)
}
spin_unlock(&vip->lock);
}
static int buffer_finish(struct vb2_buffer *vb)
static void buffer_finish(struct vb2_buffer *vb)
{
struct sta2x11_vip *vip = vb2_get_drv_priv(vb->vb2_queue);
struct vip_buffer *vip_buf = to_vip_buffer(vb);
Expand All @@ -338,8 +338,6 @@ static int buffer_finish(struct vb2_buffer *vb)
spin_unlock(&vip->lock);

vip_active_buf_next(vip);

return 0;
}

static int start_streaming(struct vb2_queue *vq, unsigned int count)
Expand Down
3 changes: 1 addition & 2 deletions drivers/media/platform/marvell-ccic/mcam-core.c
Original file line number Diff line number Diff line change
Expand Up @@ -1238,15 +1238,14 @@ static int mcam_vb_sg_buf_prepare(struct vb2_buffer *vb)
return 0;
}

static int mcam_vb_sg_buf_finish(struct vb2_buffer *vb)
static void mcam_vb_sg_buf_finish(struct vb2_buffer *vb)
{
struct mcam_camera *cam = vb2_get_drv_priv(vb->vb2_queue);
struct sg_table *sg_table = vb2_dma_sg_plane_desc(vb, 0);

if (sg_table)
dma_unmap_sg(cam->dev, sg_table->sgl,
sg_table->nents, DMA_FROM_DEVICE);
return 0;
}

static void mcam_vb_sg_buf_cleanup(struct vb2_buffer *vb)
Expand Down
4 changes: 2 additions & 2 deletions drivers/media/usb/pwc/pwc-if.c
Original file line number Diff line number Diff line change
Expand Up @@ -614,7 +614,7 @@ static int buffer_prepare(struct vb2_buffer *vb)
return 0;
}

static int buffer_finish(struct vb2_buffer *vb)
static void buffer_finish(struct vb2_buffer *vb)
{
struct pwc_device *pdev = vb2_get_drv_priv(vb->vb2_queue);
struct pwc_frame_buf *buf = container_of(vb, struct pwc_frame_buf, vb);
Expand All @@ -624,7 +624,7 @@ static int buffer_finish(struct vb2_buffer *vb)
* filled, take the pwc data we've stored in buf->data and decompress
* it into a usable format, storing the result in the vb2_buffer
*/
return pwc_decompress(pdev, buf);
pwc_decompress(pdev, buf);
}

static void buffer_cleanup(struct vb2_buffer *vb)
Expand Down
3 changes: 1 addition & 2 deletions drivers/media/usb/uvc/uvc_queue.c
Original file line number Diff line number Diff line change
Expand Up @@ -106,15 +106,14 @@ static void uvc_buffer_queue(struct vb2_buffer *vb)
spin_unlock_irqrestore(&queue->irqlock, flags);
}

static int uvc_buffer_finish(struct vb2_buffer *vb)
static void uvc_buffer_finish(struct vb2_buffer *vb)
{
struct uvc_video_queue *queue = vb2_get_drv_priv(vb->vb2_queue);
struct uvc_streaming *stream =
container_of(queue, struct uvc_streaming, queue);
struct uvc_buffer *buf = container_of(vb, struct uvc_buffer, buf);

uvc_video_clock_update(stream, &vb->v4l2_buf, buf);
return 0;
}

static void uvc_wait_prepare(struct vb2_queue *vq)
Expand Down
6 changes: 1 addition & 5 deletions drivers/media/v4l2-core/videobuf2-core.c
Original file line number Diff line number Diff line change
Expand Up @@ -1834,11 +1834,7 @@ static int vb2_internal_dqbuf(struct vb2_queue *q, struct v4l2_buffer *b, bool n
if (ret < 0)
return ret;

ret = call_vb_qop(vb, buf_finish, vb);
if (ret) {
dprintk(1, "dqbuf: buffer finish failed\n");
return ret;
}
call_vb_qop(vb, buf_finish, vb);

switch (vb->state) {
case VB2_BUF_STATE_DONE:
Expand Down
3 changes: 1 addition & 2 deletions drivers/staging/media/go7007/go7007-v4l2.c
Original file line number Diff line number Diff line change
Expand Up @@ -470,7 +470,7 @@ static int go7007_buf_prepare(struct vb2_buffer *vb)
return 0;
}

static int go7007_buf_finish(struct vb2_buffer *vb)
static void go7007_buf_finish(struct vb2_buffer *vb)
{
struct vb2_queue *vq = vb->vb2_queue;
struct go7007 *go = vb2_get_drv_priv(vq);
Expand All @@ -483,7 +483,6 @@ static int go7007_buf_finish(struct vb2_buffer *vb)
V4L2_BUF_FLAG_PFRAME);
buf->flags |= frame_type_flag;
buf->field = V4L2_FIELD_NONE;
return 0;
}

static int go7007_start_streaming(struct vb2_queue *q, unsigned int count)
Expand Down
2 changes: 1 addition & 1 deletion include/media/videobuf2-core.h
Original file line number Diff line number Diff line change
Expand Up @@ -311,7 +311,7 @@ struct vb2_ops {

int (*buf_init)(struct vb2_buffer *vb);
int (*buf_prepare)(struct vb2_buffer *vb);
int (*buf_finish)(struct vb2_buffer *vb);
void (*buf_finish)(struct vb2_buffer *vb);
void (*buf_cleanup)(struct vb2_buffer *vb);

int (*start_streaming)(struct vb2_queue *q, unsigned int count);
Expand Down

0 comments on commit 0647064

Please sign in to comment.