aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/x86/patches-5.4/012-pcengines-apu2-detect-apuv4-board.patch
diff options
context:
space:
mode:
authorPaul Spooren <mail@aparcar.org>2021-10-01 11:13:07 -1000
committerAdrian Schmutzler <freifunk@adrianschmutzler.de>2021-10-02 18:13:46 +0200
commiteea90d2dffbcf5d195e3946be2482f3cfa7c0a8a (patch)
treec0d2b147e7edb4f2864f6467a36cbff3ca4b25ac /target/linux/x86/patches-5.4/012-pcengines-apu2-detect-apuv4-board.patch
parent50f456b46cbae27ed13badfe7b2976cd01b67a57 (diff)
downloadupstream-eea90d2dffbcf5d195e3946be2482f3cfa7c0a8a.tar.gz
upstream-eea90d2dffbcf5d195e3946be2482f3cfa7c0a8a.tar.bz2
upstream-eea90d2dffbcf5d195e3946be2482f3cfa7c0a8a.zip
x86: remove obsolete Kernel 5.4
With the upgrade to Kernel 5.10 per default the old version is no longer required to be in tree. Signed-off-by: Paul Spooren <mail@aparcar.org>
Diffstat (limited to 'target/linux/x86/patches-5.4/012-pcengines-apu2-detect-apuv4-board.patch')
-rw-r--r--target/linux/x86/patches-5.4/012-pcengines-apu2-detect-apuv4-board.patch50
1 files changed, 0 insertions, 50 deletions
diff --git a/target/linux/x86/patches-5.4/012-pcengines-apu2-detect-apuv4-board.patch b/target/linux/x86/patches-5.4/012-pcengines-apu2-detect-apuv4-board.patch
deleted file mode 100644
index f62617f992..0000000000
--- a/target/linux/x86/patches-5.4/012-pcengines-apu2-detect-apuv4-board.patch
+++ /dev/null
@@ -1,50 +0,0 @@
-From 3d00da1de3ea36ba44f4a7ba76c8c8b16f98204b Mon Sep 17 00:00:00 2001
-From: "Enrico Weigelt, metux IT consult" <info@metux.net>
-Date: Thu, 12 Dec 2019 14:27:56 +0100
-Subject: [PATCH] platform/x86: pcengines-apuv2: detect apuv4 board
-
-GPIO stuff on APUv4 seems to be the same as on APUv2, so we just
-need to match on DMI data.
-
-Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net>
-Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
----
- drivers/platform/x86/pcengines-apuv2.c | 27 ++++++++++++++++++++++++++
- 1 file changed, 27 insertions(+)
-
---- a/drivers/platform/x86/pcengines-apuv2.c
-+++ b/drivers/platform/x86/pcengines-apuv2.c
-@@ -188,6 +188,33 @@ static const struct dmi_system_id apu_gp
- },
- .driver_data = (void *)&board_apu2,
- },
-+ /* APU4 w/ legacy bios < 4.0.8 */
-+ {
-+ .ident = "apu4",
-+ .matches = {
-+ DMI_MATCH(DMI_SYS_VENDOR, "PC Engines"),
-+ DMI_MATCH(DMI_BOARD_NAME, "APU4")
-+ },
-+ .driver_data = (void *)&board_apu2,
-+ },
-+ /* APU4 w/ legacy bios >= 4.0.8 */
-+ {
-+ .ident = "apu4",
-+ .matches = {
-+ DMI_MATCH(DMI_SYS_VENDOR, "PC Engines"),
-+ DMI_MATCH(DMI_BOARD_NAME, "apu4")
-+ },
-+ .driver_data = (void *)&board_apu2,
-+ },
-+ /* APU4 w/ mainline bios */
-+ {
-+ .ident = "apu4",
-+ .matches = {
-+ DMI_MATCH(DMI_SYS_VENDOR, "PC Engines"),
-+ DMI_MATCH(DMI_BOARD_NAME, "PC Engines apu4")
-+ },
-+ .driver_data = (void *)&board_apu2,
-+ },
- {}
- };
-