extcon: adc-jack: Fix an error handling path in 'adc_jack_probe()'
authorChristophe JAILLET <christophe.jaillet@wanadoo.fr>
Sun, 10 May 2020 09:53:03 +0000 (11:53 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 24 Jun 2020 15:50:36 +0000 (17:50 +0200)
commitc75f1641ef58d341bd5bfdb9a9064ef278f7531d
treeb6ac5d15972f288bf7304a254a2d7af491ffaf69
parent5ed5f8db95821c14f37483b950d0dd31bf592981
extcon: adc-jack: Fix an error handling path in 'adc_jack_probe()'

[ Upstream commit bc84cff2c92ae5ccb2c37da73756e7174b1b430f ]

In some error handling paths, a call to 'iio_channel_get()' is not balanced
by a corresponding call to 'iio_channel_release()'.

This can be achieved easily by using the devm_ variant of
'iio_channel_get()'.

This has the extra benefit to simplify the remove function.

Fixes: 19939860dcae ("extcon: adc_jack: adc-jack driver to support 3.5 pi or simliar devices")
Signed-off-by: Christophe JAILLET <christophe.jaillet@wanadoo.fr>
Signed-off-by: Chanwoo Choi <cw00.choi@samsung.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
drivers/extcon/extcon-adc-jack.c