X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=blobdiff_plain;f=recipes-kernel%2Fmost%2Ffiles%2F0001-Fix-LINUX_VERSION_CODE-check-for-dim2_hdm.patch;fp=recipes-kernel%2Fmost%2Ffiles%2F0001-Fix-LINUX_VERSION_CODE-check-for-dim2_hdm.patch;h=7edaa34f97e5968121656efea6f1c2895fcbff96;hb=505f771bd855e929d50844668dc79aa35d92dea8;hp=0000000000000000000000000000000000000000;hpb=98326a92c016606d71fd48cb1738247f3a0b58b4;p=AGL%2Fmeta-agl-demo.git diff --git a/recipes-kernel/most/files/0001-Fix-LINUX_VERSION_CODE-check-for-dim2_hdm.patch b/recipes-kernel/most/files/0001-Fix-LINUX_VERSION_CODE-check-for-dim2_hdm.patch new file mode 100644 index 000000000..7edaa34f9 --- /dev/null +++ b/recipes-kernel/most/files/0001-Fix-LINUX_VERSION_CODE-check-for-dim2_hdm.patch @@ -0,0 +1,23 @@ +From 18aeaf3abf9080174a7a820ac1a50839e6d6b0ca Mon Sep 17 00:00:00 2001 +From: Jan-Simon Moeller +Date: Wed, 31 May 2023 23:12:59 +0200 +Subject: [PATCH] Fix LINUX_VERSION_CODE check for dim2_hdm + +Signed-off-by: Jan-Simon Moeller +--- + driver/hdm-dim2/dim2_hdm.c | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/driver/hdm-dim2/dim2_hdm.c b/driver/hdm-dim2/dim2_hdm.c +index fc02c6b..c1a2e71 100644 +--- a/hdm-dim2/dim2_hdm.c ++++ b/hdm-dim2/dim2_hdm.c +@@ -54,7 +54,7 @@ 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) ++#if LINUX_VERSION_CODE < KERNEL_VERSION(5,4,235) + static DECLARE_TASKLET(dim2_tasklet, dim2_tasklet_fn, 0); + #else + static DECLARE_TASKLET_OLD(dim2_tasklet, dim2_tasklet_fn);