From: Andrey Smirnov Date: Sun, 11 Aug 2019 05:45:11 +0000 (-0700) Subject: iio: hi8435: Use gpiod_set_value_cansleep() X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=6822dc9daa26102161e58a96b2ca938d14696006;p=linux.git iio: hi8435: Use gpiod_set_value_cansleep() Use gpiod_set_value_cansleep() instead of gpiod_set_value() to support the case when reset pin is connected to a GPIO expander. See ZII VF610 SCU4 AIB for one such example. Signed-off-by: Andrey Smirnov Cc: linux-kernel@vger.kernel.org Cc: linux-iio@vger.kernel.org Cc: Jonathan Cameron Cc: Chris Healy Signed-off-by: Jonathan Cameron --- diff --git a/drivers/iio/adc/hi8435.c b/drivers/iio/adc/hi8435.c index 35951c47004eb..c15f0e154e4d1 100644 --- a/drivers/iio/adc/hi8435.c +++ b/drivers/iio/adc/hi8435.c @@ -477,7 +477,7 @@ static int hi8435_probe(struct spi_device *spi) hi8435_writeb(priv, HI8435_CTRL_REG, 0); } else { udelay(5); - gpiod_set_value(reset_gpio, 1); + gpiod_set_value_cansleep(reset_gpio, 1); } spi_set_drvdata(spi, idev);