Commit cb1c05c8 authored by Stanimir Varbanov's avatar Stanimir Varbanov Committed by Mauro Carvalho Chehab

media: venus: core: Add missing mutex destroy

This adds missing mutex_destroy in remove method of venus core driver.
Signed-off-by: default avatarStanimir Varbanov <stanimir.varbanov@linaro.org>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab+huawei@kernel.org>
parent e51759f5
...@@ -335,6 +335,7 @@ static int venus_remove(struct platform_device *pdev) ...@@ -335,6 +335,7 @@ static int venus_remove(struct platform_device *pdev)
v4l2_device_unregister(&core->v4l2_dev); v4l2_device_unregister(&core->v4l2_dev);
mutex_destroy(&core->pm_lock); mutex_destroy(&core->pm_lock);
mutex_destroy(&core->lock);
return ret; return ret;
} }
......
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