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: Hariprasad Kelam <hariprasad.kelam@gmail.com> Reviewed-by: Fabio Estevam <festevam@gmail.com> Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl> Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
This commit is contained in:
Родитель
fe97d64d72
Коммит
75417060e9
|
@ -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 = {
|
||||
|
|
Загрузка…
Ссылка в новой задаче