From: Ivan T. Ivanov Date: Wed, 17 Dec 2014 15:59:27 +0000 (+0200) Subject: extcon: adc-jack: Release IIO channel on driver remove X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=5a696d9760fe99bd96dfc6ac336b7e2dc9b21c98;p=linux-beck.git extcon: adc-jack: Release IIO channel on driver remove Release IIO channel acquired during driver probe. Signed-off-by: Ivan T. Ivanov Signed-off-by: Chanwoo Choi --- diff --git a/drivers/extcon/extcon-adc-jack.c b/drivers/extcon/extcon-adc-jack.c index 5d7ab577fba9..2bb82e55065a 100644 --- a/drivers/extcon/extcon-adc-jack.c +++ b/drivers/extcon/extcon-adc-jack.c @@ -173,6 +173,7 @@ static int adc_jack_remove(struct platform_device *pdev) free_irq(data->irq, data); cancel_work_sync(&data->handler.work); + iio_channel_release(data->chan); return 0; }