media: si470x-i2c: add missed operations in remove
authorChuhong Yuan <hslester96@gmail.com>
Sun, 10 Nov 2019 06:28:15 +0000 (07:28 +0100)
committerMauro Carvalho Chehab <mchehab@kernel.org>
Sun, 10 Nov 2019 06:28:15 +0000 (07:28 +0100)
The driver misses calling v4l2_ctrl_handler_free and
v4l2_device_unregister in remove like what is done in probe failure.
Add the calls to fix it.

Signed-off-by: Chuhong Yuan <hslester96@gmail.com>
Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
Signed-off-by: Mauro Carvalho Chehab <mchehab@kernel.org>
drivers/media/radio/si470x/radio-si470x-i2c.c

index 7541698a0be112098e6756a31560d1a13c8ef150..f491420d7b538a3f67dd9598e950438b6b71cb13 100644 (file)
@@ -482,6 +482,8 @@ static int si470x_i2c_remove(struct i2c_client *client)
        if (radio->gpio_reset)
                gpiod_set_value(radio->gpio_reset, 0);
 
+       v4l2_ctrl_handler_free(&radio->hdl);
+       v4l2_device_unregister(&radio->v4l2_dev);
        return 0;
 }