summaryrefslogtreecommitdiffstats
path: root/recipes-kernel/most/files/0014-Fix-build-with-5.9-kernel.patch
diff options
context:
space:
mode:
authorJan-Simon Möller <jsmoeller@linuxfoundation.org>2021-11-03 15:18:49 +0100
committerJan-Simon Möller <jsmoeller@linuxfoundation.org>2021-11-03 22:43:56 +0100
commit1b72a0f90fa7d1b45eb1017629cc83dcd8971c48 (patch)
treedecc406f376b968d90fade3c321777e068a8c00e /recipes-kernel/most/files/0014-Fix-build-with-5.9-kernel.patch
parent94a051785cdb588bc3a475a5490f1f286176d646 (diff)
Prepare master for new framework integration
During the last workshop the transition to the new framework was presented. This change essentially deprecates the SMACK-based application framework. To prepare the integration of it, we remove the deprecated components: - recipes-apis : all agl-service-* - recipes-demos: all demo apps but homescreen - non-essential configurations Todo: We need to bring-back the html5 image in a follow-up w/o ties into the old framework. v2: kept WAM + Chromium recipes for reference v3: rebased Bug-AGL: SPEC-4121 Signed-off-by: Jan-Simon Moeller <jsmoeller@linuxfoundation.org> Change-Id: I58075f5f1e477106a1aad3d2171a0904bf0cb16e
Diffstat (limited to 'recipes-kernel/most/files/0014-Fix-build-with-5.9-kernel.patch')
-rw-r--r--recipes-kernel/most/files/0014-Fix-build-with-5.9-kernel.patch39
1 files changed, 0 insertions, 39 deletions
diff --git a/recipes-kernel/most/files/0014-Fix-build-with-5.9-kernel.patch b/recipes-kernel/most/files/0014-Fix-build-with-5.9-kernel.patch
deleted file mode 100644
index fd430c9d..00000000
--- a/recipes-kernel/most/files/0014-Fix-build-with-5.9-kernel.patch
+++ /dev/null
@@ -1,39 +0,0 @@
-Fix building against 5.9 or newer kernels
-
-DECLARE_TASKLET was replaced with DECLARE_TASKLET_OLD in 5.9.
-Marking as inappropriate for upstream for now, as it seems the
-standalone version of the driver has been superceded by the version
-in the staging tree in the mainline kernel, and there are no obvious
-signs of maintenance.
-
-Upstream-Status: Inappropriate [no upstream]
-Signed-off-by: Scott Murray <scott.murray@konsulko.com>
-
----
- driver/hdm-dim2/dim2_hdm.c | 5 +++++
- 1 file changed, 5 insertions(+)
-
-diff --git a/hdm-dim2/dim2_hdm.c b/hdm-dim2/dim2_hdm.c
-index 1847091..fc02c6b 100644
---- a/hdm-dim2/dim2_hdm.c
-+++ b/hdm-dim2/dim2_hdm.c
-@@ -14,6 +14,7 @@
- #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
-
- #include <linux/module.h>
-+#include <linux/version.h>
- #include <linux/of_platform.h>
- #include <linux/printk.h>
- #include <linux/kernel.h>
-@@ -53,7 +54,11 @@ MODULE_PARM_DESC(fcnt, "Num of frames per sub-buffer for sync channels as a powe
- static DEFINE_SPINLOCK(dim_lock);
-
- static void dim2_tasklet_fn(unsigned long data);
-+#if LINUX_VERSION_CODE < KERNEL_VERSION(5,9,0)
- static DECLARE_TASKLET(dim2_tasklet, dim2_tasklet_fn, 0);
-+#else
-+static DECLARE_TASKLET_OLD(dim2_tasklet, dim2_tasklet_fn);
-+#endif
-
- /**
- * struct hdm_channel - private structure to keep channel specific data