Make sure v4l2_device_unregister_subdev() is called for both:
oif and sensor subdev and both media entities are freed on
driver removal.

Signed-off-by: Sylwester Nawrocki <s.nawro...@samsung.com>
Signed-off-by: Kyungmin Park <kyungmin.p...@samsung.com>
---
 drivers/media/i2c/s5c73m3/s5c73m3-core.c |   14 +++++++++-----
 1 file changed, 9 insertions(+), 5 deletions(-)

diff --git a/drivers/media/i2c/s5c73m3/s5c73m3-core.c 
b/drivers/media/i2c/s5c73m3/s5c73m3-core.c
index b353c50..ce8fcf2 100644
--- a/drivers/media/i2c/s5c73m3/s5c73m3-core.c
+++ b/drivers/media/i2c/s5c73m3/s5c73m3-core.c
@@ -1668,13 +1668,17 @@ out_err1:
 
 static int s5c73m3_remove(struct i2c_client *client)
 {
-       struct v4l2_subdev *sd = i2c_get_clientdata(client);
-       struct s5c73m3 *state = sensor_sd_to_s5c73m3(sd);
+       struct v4l2_subdev *oif_sd = i2c_get_clientdata(client);
+       struct s5c73m3 *state = oif_sd_to_s5c73m3(oif_sd);
+       struct v4l2_subdev *sensor_sd = &state->sensor_sd;
 
-       v4l2_device_unregister_subdev(sd);
+       v4l2_device_unregister_subdev(oif_sd);
 
-       v4l2_ctrl_handler_free(sd->ctrl_handler);
-       media_entity_cleanup(&sd->entity);
+       v4l2_ctrl_handler_free(oif_sd->ctrl_handler);
+       media_entity_cleanup(&oif_sd->entity);
+
+       v4l2_device_unregister_subdev(sensor_sd);
+       media_entity_cleanup(&sensor_sd->entity);
 
        s5c73m3_unregister_spi_driver(state);
        s5c73m3_free_gpios(state);
-- 
1.7.9.5

--
To unsubscribe from this list: send the line "unsubscribe linux-media" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to