Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 75417060 authored by Hariprasad Kelam's avatar Hariprasad Kelam Committed by Mauro Carvalho Chehab
Browse files

media: staging: media: imx: fix Unneeded variable: "ret". Return "0"



fix below warning reported by coccichec

drivers/staging/media/imx/imx-media-capture.c:617:5-8: Unneeded
variable: "ret". Return "0" on line 630

Signed-off-by: default avatarHariprasad Kelam <hariprasad.kelam@gmail.com>
Reviewed-by: default avatarFabio Estevam <festevam@gmail.com>
Signed-off-by: default avatarHans Verkuil <hverkuil-cisco@xs4all.nl>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab+samsung@kernel.org>
parent fe97d64d
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -614,7 +614,6 @@ static int capture_release(struct file *file)
	struct capture_priv *priv = video_drvdata(file);
	struct video_device *vfd = priv->vdev.vfd;
	struct vb2_queue *vq = &priv->q;
	int ret = 0;

	mutex_lock(&priv->mutex);

@@ -627,7 +626,7 @@ static int capture_release(struct file *file)

	v4l2_fh_release(file);
	mutex_unlock(&priv->mutex);
	return ret;
	return 0;
}

static const struct v4l2_file_operations capture_fops = {