+++ /dev/null
-patches for random stuff that need to be applied, once all of the build issues
-are worked out:
-
-f227e3ec3b5c ("random32: update the net random state on interrupt and activity")
-aa54ea903abb ("ARM: percpu.h: fix build error")
-1c9df907da83 ("random: fix circular include dependency on arm64 after addition of percpu.h")
-83bdc7275e62 ("random32: remove net_rand_state from the latent entropy gcc plugin")
-c0842fbc1b18 ("random32: move the pseudo-random 32-bit definitions to prandom.h")
-
+++ /dev/null
-From e18788afebd12a53b3e173d5b1390a785346da2e Mon Sep 17 00:00:00 2001
-From: Jonathan Cameron <jic23@kernel.org>
-Date: Sun, 28 May 2017 16:10:21 +0100
-Subject: Revert "iio: hi8435: cleanup reset gpio"
-
-From: Jonathan Cameron <jic23@kernel.org>
-
-commit e18788afebd12a53b3e173d5b1390a785346da2e upstream.
-
-This reverts commit 61305664a542f874283f74bf0b27ddb31f5045d7.
-
-This commit was applied prematurely and will break some existing
-situations where the signal is inverted as part of voltage level
-conversions.
-
-Signed-off-by: Jonathan Cameron <jic23@kernel.org>
-Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
----
- drivers/iio/adc/hi8435.c | 12 +++++-------
- 1 file changed, 5 insertions(+), 7 deletions(-)
-
---- a/drivers/iio/adc/hi8435.c
-+++ b/drivers/iio/adc/hi8435.c
-@@ -453,15 +453,13 @@ static int hi8435_probe(struct spi_devic
- priv->spi = spi;
-
- reset_gpio = devm_gpiod_get(&spi->dev, NULL, GPIOD_OUT_LOW);
-- if (!IS_ERR(reset_gpio)) {
-- /* need >=100ns low pulse to reset chip */
-- gpiod_set_raw_value_cansleep(reset_gpio, 0);
-- udelay(1);
-- gpiod_set_raw_value_cansleep(reset_gpio, 1);
-- } else {
-- /* s/w reset chip if h/w reset is not available */
-+ if (IS_ERR(reset_gpio)) {
-+ /* chip s/w reset if h/w reset failed */
- hi8435_writeb(priv, HI8435_CTRL_REG, HI8435_CTRL_SRST);
- hi8435_writeb(priv, HI8435_CTRL_REG, 0);
-+ } else {
-+ udelay(5);
-+ gpiod_set_value(reset_gpio, 1);
- }
-
- spi_set_drvdata(spi, idev);