diff mbox series

[v2] media: vim2m: fix build breakage due to a merge conflict

Message ID c450df23a26ea90c58791fba2092ef48c6f32d2b.1550505119.git.mchehab+samsung@kernel.org (mailing list archive)
State New, archived
Headers show
Series [v2] media: vim2m: fix build breakage due to a merge conflict | expand

Commit Message

Mauro Carvalho Chehab Feb. 18, 2019, 3:52 p.m. UTC
A merge conflict rised when merging from -rc7. Fix it.

In this specific case, we don't need the if anymore, as the
work_run was moved to its rightful place (struct vim2m_ctx).

Fixes: b3e64e5b0778 ("media: vim2m: use per-file handler work queue")
Fixes: 240809ef6630 ("media: vim2m: only cancel work if it is for right context")
Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
---
 drivers/media/platform/vim2m.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

Comments

Hans Verkuil Feb. 18, 2019, 3:53 p.m. UTC | #1
On 2/18/19 4:52 PM, Mauro Carvalho Chehab wrote:
> A merge conflict rised when merging from -rc7. Fix it.
> 
> In this specific case, we don't need the if anymore, as the
> work_run was moved to its rightful place (struct vim2m_ctx).
> 
> Fixes: b3e64e5b0778 ("media: vim2m: use per-file handler work queue")
> Fixes: 240809ef6630 ("media: vim2m: only cancel work if it is for right context")
> Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>

Reviewed-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>

> ---
>  drivers/media/platform/vim2m.c | 3 +--
>  1 file changed, 1 insertion(+), 2 deletions(-)
> 
> diff --git a/drivers/media/platform/vim2m.c b/drivers/media/platform/vim2m.c
> index 04250adf58e0..a27d3052bb62 100644
> --- a/drivers/media/platform/vim2m.c
> +++ b/drivers/media/platform/vim2m.c
> @@ -905,8 +905,7 @@ static void vim2m_stop_streaming(struct vb2_queue *q)
>  	struct vb2_v4l2_buffer *vbuf;
>  	unsigned long flags;
>  
> -	if (v4l2_m2m_get_curr_priv(dev->m2m_dev) == ctx)
> -		cancel_delayed_work_sync(&dev->work_run);
> +	cancel_delayed_work_sync(&ctx->work_run);
>  
>  	for (;;) {
>  		if (V4L2_TYPE_IS_OUTPUT(q->type))
>
diff mbox series

Patch

diff --git a/drivers/media/platform/vim2m.c b/drivers/media/platform/vim2m.c
index 04250adf58e0..a27d3052bb62 100644
--- a/drivers/media/platform/vim2m.c
+++ b/drivers/media/platform/vim2m.c
@@ -905,8 +905,7 @@  static void vim2m_stop_streaming(struct vb2_queue *q)
 	struct vb2_v4l2_buffer *vbuf;
 	unsigned long flags;
 
-	if (v4l2_m2m_get_curr_priv(dev->m2m_dev) == ctx)
-		cancel_delayed_work_sync(&dev->work_run);
+	cancel_delayed_work_sync(&ctx->work_run);
 
 	for (;;) {
 		if (V4L2_TYPE_IS_OUTPUT(q->type))