From: Lars-Peter Clausen Date: Fri, 7 Mar 2014 16:14:28 +0000 (-0300) Subject: [media] adv7180: Free control handler on remove() X-Git-Tag: v3.15-rc1~85^2~108 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=b13f4af25c0a36d74a69f7d30e2a28fa941e99b5;p=karo-tx-linux.git [media] adv7180: Free control handler on remove() Make sure to free the control handler when the device is removed. Signed-off-by: Lars-Peter Clausen Signed-off-by: Hans Verkuil Signed-off-by: Mauro Carvalho Chehab --- diff --git a/drivers/media/i2c/adv7180.c b/drivers/media/i2c/adv7180.c index 1a3622a9d0fb..2359fd834c9b 100644 --- a/drivers/media/i2c/adv7180.c +++ b/drivers/media/i2c/adv7180.c @@ -641,6 +641,7 @@ static int adv7180_remove(struct i2c_client *client) } v4l2_device_unregister_subdev(sd); + adv7180_exit_controls(state); mutex_destroy(&state->mutex); return 0; }