diff options
author | Hans Verkuil <hans.verkuil@cisco.com> | 2014-03-04 05:27:13 -0500 |
---|---|---|
committer | Mauro Carvalho Chehab <m.chehab@samsung.com> | 2014-03-11 05:56:38 -0400 |
commit | 0647064293d745720fc62e2edc7734fa8af06adf (patch) | |
tree | b8e1092039c7a3a10ef3102b8bf1ee4fc028f75e /drivers/media/usb/pwc/pwc-if.c | |
parent | b5b4541eef8eac83f5c0d166d8e494f7c9fff202 (diff) |
[media] vb2: change result code of buf_finish to void
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>
Diffstat (limited to 'drivers/media/usb/pwc/pwc-if.c')
-rw-r--r-- | drivers/media/usb/pwc/pwc-if.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/media/usb/pwc/pwc-if.c b/drivers/media/usb/pwc/pwc-if.c index 8bef0152b1ce..1a27096b3f91 100644 --- a/drivers/media/usb/pwc/pwc-if.c +++ b/drivers/media/usb/pwc/pwc-if.c | |||
@@ -614,7 +614,7 @@ static int buffer_prepare(struct vb2_buffer *vb) | |||
614 | return 0; | 614 | return 0; |
615 | } | 615 | } |
616 | 616 | ||
617 | static int buffer_finish(struct vb2_buffer *vb) | 617 | static void buffer_finish(struct vb2_buffer *vb) |
618 | { | 618 | { |
619 | struct pwc_device *pdev = vb2_get_drv_priv(vb->vb2_queue); | 619 | struct pwc_device *pdev = vb2_get_drv_priv(vb->vb2_queue); |
620 | struct pwc_frame_buf *buf = container_of(vb, struct pwc_frame_buf, vb); | 620 | struct pwc_frame_buf *buf = container_of(vb, struct pwc_frame_buf, vb); |
@@ -624,7 +624,7 @@ static int buffer_finish(struct vb2_buffer *vb) | |||
624 | * filled, take the pwc data we've stored in buf->data and decompress | 624 | * filled, take the pwc data we've stored in buf->data and decompress |
625 | * it into a usable format, storing the result in the vb2_buffer | 625 | * it into a usable format, storing the result in the vb2_buffer |
626 | */ | 626 | */ |
627 | return pwc_decompress(pdev, buf); | 627 | pwc_decompress(pdev, buf); |
628 | } | 628 | } |
629 | 629 | ||
630 | static void buffer_cleanup(struct vb2_buffer *vb) | 630 | static void buffer_cleanup(struct vb2_buffer *vb) |