Commit 76765353 authored by Sakari Ailus's avatar Sakari Ailus Committed by Greg Kroah-Hartman

media: dw9807-vcm: Fix probe error handling

[ Upstream commit 9e5b5081 ]

v4l2_async_unregister_subdev() may not be called without
v4l2_async_register_subdev() being called first. Fix this.
Signed-off-by: default avatarSakari Ailus <sakari.ailus@linux.intel.com>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab+samsung@kernel.org>
Signed-off-by: default avatarSasha Levin <sashal@kernel.org>
parent 96134bbe
...@@ -218,7 +218,8 @@ static int dw9807_probe(struct i2c_client *client) ...@@ -218,7 +218,8 @@ static int dw9807_probe(struct i2c_client *client)
return 0; return 0;
err_cleanup: err_cleanup:
dw9807_subdev_cleanup(dw9807_dev); v4l2_ctrl_handler_free(&dw9807_dev->ctrls_vcm);
media_entity_cleanup(&dw9807_dev->sd.entity);
return rval; return rval;
} }
......
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