Commit 6cf77d18 authored by Mauro Carvalho Chehab's avatar Mauro Carvalho Chehab

[media] marvel-ccic: just return 0 instead of using a var

Instead of allocating a var to store 0 and just return it,
change the code to return 0 directly.
Signed-off-by: default avatarMauro Carvalho Chehab <m.chehab@samsung.com>
parent b80cefb4
...@@ -313,7 +313,6 @@ static int isp_video_release(struct file *file) ...@@ -313,7 +313,6 @@ static int isp_video_release(struct file *file)
struct fimc_is_video *ivc = &isp->video_capture; struct fimc_is_video *ivc = &isp->video_capture;
struct media_entity *entity = &ivc->ve.vdev.entity; struct media_entity *entity = &ivc->ve.vdev.entity;
struct media_device *mdev = entity->parent; struct media_device *mdev = entity->parent;
int ret = 0;
mutex_lock(&isp->video_lock); mutex_lock(&isp->video_lock);
...@@ -335,7 +334,7 @@ static int isp_video_release(struct file *file) ...@@ -335,7 +334,7 @@ static int isp_video_release(struct file *file)
pm_runtime_put(&isp->pdev->dev); pm_runtime_put(&isp->pdev->dev);
mutex_unlock(&isp->video_lock); mutex_unlock(&isp->video_lock);
return ret; return 0;
} }
static const struct v4l2_file_operations isp_video_fops = { static const struct v4l2_file_operations isp_video_fops = {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment