iio: adc: stm32-adc: Fix of_node_put() issue in stm32-adc
authorWan Jiabing <wanjiabing@vivo.com>
Thu, 21 Oct 2021 12:18:23 +0000 (08:18 -0400)
committerJonathan Cameron <Jonathan.Cameron@huawei.com>
Wed, 17 Nov 2021 17:51:32 +0000 (17:51 +0000)
commit8cf524be72fa8205754ed0ddc11a32aaf156c39f
treec99ad7258de3760f16623392a8405a68a0d11edb
parentfb45c7a31ec1f772502867ea87a2315b57a9f439
iio: adc: stm32-adc: Fix of_node_put() issue in stm32-adc

Fix following coccicheck warning:
./drivers/iio/adc/stm32-adc.c:2014:1-33: WARNING: Function
for_each_available_child_of_node should have of_node_put() before return.

Early exits from for_each_available_child_of_node should decrement the
node reference counter. Replace return by goto here.

Reviewed-by: Fabrice Gasnier <fabrice.gasnier@foss.st.com>
Signed-off-by: Wan Jiabing <wanjiabing@vivo.com>
Link: https://lore.kernel.org/r/20211021121826.6339-1-wanjiabing@vivo.com
Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
drivers/iio/adc/stm32-adc.c