]> git.ipfire.org Git - thirdparty/kernel/stable-queue.git/commitdiff
remove other pending notes for trees we don't maintain anymore
authorGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sun, 7 Sep 2025 13:04:43 +0000 (15:04 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sun, 7 Sep 2025 13:04:43 +0000 (15:04 +0200)
pending/futex_issues.txt [deleted file]
pending/i386_issues.txt [deleted file]
pending/random.txt [deleted file]
pending/revert-iio-hi8435-cleanup-reset-gpio.patch [deleted file]

diff --git a/pending/futex_issues.txt b/pending/futex_issues.txt
deleted file mode 100644 (file)
index ad0a5be..0000000
+++ /dev/null
@@ -1,5 +0,0 @@
-need to go to 4.9 and older:
-       ca16d5bee59807bf04deaab0a8eccecd5061528c..3ef240eaff36b8119ac9e2ea17cbf41179c930ba inclusive
-
-       12bb3f7f1b03d5913b3f9d4236a488aa7774dfe9..34b1a1ce1458f50ef27c54e28eb9b1947012907a inclusive
-
diff --git a/pending/i386_issues.txt b/pending/i386_issues.txt
deleted file mode 100644 (file)
index 7900cc3..0000000
+++ /dev/null
@@ -1,3 +0,0 @@
-need to go to 4.19 and probably older:
-       81ff2c37f9e5d77593928df0536d86443195fd64..4a13b0e3e10996b9aa0b45a764ecfe49f6fcd360
-inclusive
diff --git a/pending/random.txt b/pending/random.txt
deleted file mode 100644 (file)
index 5d0ce6d..0000000
+++ /dev/null
@@ -1,9 +0,0 @@
-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")
-
diff --git a/pending/revert-iio-hi8435-cleanup-reset-gpio.patch b/pending/revert-iio-hi8435-cleanup-reset-gpio.patch
deleted file mode 100644 (file)
index 4991b3a..0000000
+++ /dev/null
@@ -1,44 +0,0 @@
-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);