aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/gemini/patches-4.14/0010-pinctrl-gemini-Fix-usage-of-3512-groups.patch
diff options
context:
space:
mode:
authorHauke Mehrtens <hauke@hauke-m.de>2020-02-29 16:49:09 +0100
committerHauke Mehrtens <hauke@hauke-m.de>2020-03-12 09:28:23 +0100
commit8334e04d24462b6fa3b53c77442a21f473149a1d (patch)
tree679fbfabaf7b53bd3d359092c77eb46a8a09ec45 /target/linux/gemini/patches-4.14/0010-pinctrl-gemini-Fix-usage-of-3512-groups.patch
parent7a6a85ce108c4883c0d99d5ecdd30512af11dff4 (diff)
downloadupstream-8334e04d24462b6fa3b53c77442a21f473149a1d.tar.gz
upstream-8334e04d24462b6fa3b53c77442a21f473149a1d.tar.bz2
upstream-8334e04d24462b6fa3b53c77442a21f473149a1d.zip
gemini: Remove kernel 4.14 support
This target was switched to kernel 4.19 more than 6 months ago in commit f342ffd300da ("treewide: kernel: bump some targets to 4.19") and now with kernel 5.4 support being added it gets harder to support kernel 4.14 in addition to kernel 4.19 and 5.4. Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
Diffstat (limited to 'target/linux/gemini/patches-4.14/0010-pinctrl-gemini-Fix-usage-of-3512-groups.patch')
-rw-r--r--target/linux/gemini/patches-4.14/0010-pinctrl-gemini-Fix-usage-of-3512-groups.patch25
1 files changed, 0 insertions, 25 deletions
diff --git a/target/linux/gemini/patches-4.14/0010-pinctrl-gemini-Fix-usage-of-3512-groups.patch b/target/linux/gemini/patches-4.14/0010-pinctrl-gemini-Fix-usage-of-3512-groups.patch
deleted file mode 100644
index f01edb9bff..0000000000
--- a/target/linux/gemini/patches-4.14/0010-pinctrl-gemini-Fix-usage-of-3512-groups.patch
+++ /dev/null
@@ -1,25 +0,0 @@
-From 88a5c6ad311588f178c5a88e4eeacc6d40b8ede3 Mon Sep 17 00:00:00 2001
-From: Linus Walleij <linus.walleij@linaro.org>
-Date: Wed, 22 Nov 2017 21:04:14 +0100
-Subject: [PATCH 10/31] pinctrl: gemini: Fix usage of 3512 groups
-
-The pin config lookup function was still hardcoding the
-3516 pin set, which is obviously wrong. Use the pointer
-in the state container.
-
-Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
----
- drivers/pinctrl/pinctrl-gemini.c | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
---- a/drivers/pinctrl/pinctrl-gemini.c
-+++ b/drivers/pinctrl/pinctrl-gemini.c
-@@ -2352,7 +2352,7 @@ static const struct gemini_pin_conf *gem
- int i;
-
- for (i = 0; i < pmx->nconfs; i++) {
-- retconf = &gemini_confs_3516[i];
-+ retconf = &pmx->confs[i];
- if (retconf->pin == pin)
- return retconf;
- }