video: mmp: delete a stray mutex_unlock()
We aren't holding the disp_lock so we shouldn't release it. Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com> Acked-by: Haojian Zhuang <haojian.zhuang@gmail.com> Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
This commit is contained in:
parent
c3235bfc0c
commit
4ac8bd618b
|
@ -173,7 +173,7 @@ struct mmp_path *mmp_register_path(struct mmp_path_info *info)
|
||||||
+ sizeof(struct mmp_overlay) * info->overlay_num;
|
+ sizeof(struct mmp_overlay) * info->overlay_num;
|
||||||
path = kzalloc(size, GFP_KERNEL);
|
path = kzalloc(size, GFP_KERNEL);
|
||||||
if (!path)
|
if (!path)
|
||||||
goto failed;
|
return NULL;
|
||||||
|
|
||||||
/* path set */
|
/* path set */
|
||||||
mutex_init(&path->access_ok);
|
mutex_init(&path->access_ok);
|
||||||
|
@ -219,11 +219,6 @@ struct mmp_path *mmp_register_path(struct mmp_path_info *info)
|
||||||
|
|
||||||
mutex_unlock(&disp_lock);
|
mutex_unlock(&disp_lock);
|
||||||
return path;
|
return path;
|
||||||
|
|
||||||
failed:
|
|
||||||
kfree(path);
|
|
||||||
mutex_unlock(&disp_lock);
|
|
||||||
return NULL;
|
|
||||||
}
|
}
|
||||||
EXPORT_SYMBOL_GPL(mmp_register_path);
|
EXPORT_SYMBOL_GPL(mmp_register_path);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue