aboutsummaryrefslogtreecommitdiffstats
path: root/package/kernel/linux/modules
diff options
context:
space:
mode:
authorTim Harvey <tharvey@gateworks.com>2024-05-20 15:19:37 -0700
committerHauke Mehrtens <hauke@hauke-m.de>2024-06-06 22:04:23 +0200
commiteebe2d1a832ddec67727acc2fd16b9cf5af7b0ba (patch)
tree3687943a0e38a3f186e9bb9b580a7754d6c06ab9 /package/kernel/linux/modules
parent32671b36a1105b73d7079a68668e01e9188d8dbe (diff)
downloadupstream-eebe2d1a832ddec67727acc2fd16b9cf5af7b0ba.tar.gz
upstream-eebe2d1a832ddec67727acc2fd16b9cf5af7b0ba.tar.bz2
upstream-eebe2d1a832ddec67727acc2fd16b9cf5af7b0ba.zip
kernel: modules: video: fix imx-ldb
Commit ae8bf1a26e15 ("imx: add imx8m support") configured the drm-imx-ldb kmod for imx_cortexa9 and imx_cortexa7 however it is only applicable to imx_cortexa9 (imx6). Fix this so that we can avoid a missing module config for cortexa7 when moving to the 6.6 kernel. Signed-off-by: Tim Harvey <tharvey@gateworks.com>
Diffstat (limited to 'package/kernel/linux/modules')
-rw-r--r--package/kernel/linux/modules/video.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/package/kernel/linux/modules/video.mk b/package/kernel/linux/modules/video.mk
index e242a06c42f..ea5f82921ec 100644
--- a/package/kernel/linux/modules/video.mk
+++ b/package/kernel/linux/modules/video.mk
@@ -460,7 +460,7 @@ $(eval $(call KernelPackage,drm-imx-hdmi))
define KernelPackage/drm-imx-ldb
SUBMENU:=$(VIDEO_MENU)
TITLE:=Freescale i.MX LVDS DRM support
- DEPENDS:=@(TARGET_imx&&!TARGET_imx_cortexa53) +kmod-backlight kmod-drm-imx
+ DEPENDS:=@(TARGET_imx&&TARGET_imx_cortexa9) +kmod-backlight kmod-drm-imx
KCONFIG:=CONFIG_DRM_IMX_LDB \
CONFIG_DRM_PANEL_SIMPLE \
CONFIG_DRM_PANEL=y \