Browse Source

kernel: modules: video: fix drm-imx for 6.1

Linux 6.1 changed DRM_GEM_DMA_HELPER to a module (drm_dma_helper.ko).

Add this to the drm-imx to fix module dependencies.

Signed-off-by: Tim Harvey <[email protected]>
Tim Harvey 2 years ago
parent
commit
f91286a436
1 changed files with 1 additions and 0 deletions
  1. 1 0
      package/kernel/linux/modules/video.mk

+ 1 - 0
package/kernel/linux/modules/video.mk

@@ -380,6 +380,7 @@ define KernelPackage/drm-imx
 	CONFIG_DRM_IMX_HDMI=n
   FILES:= \
 	$(LINUX_DIR)/drivers/gpu/drm/imx/imxdrm.ko \
+	$(LINUX_DIR)/drivers/gpu/drm/[email protected] \
 	$(LINUX_DIR)/drivers/gpu/ipu-v3/imx-ipu-v3.ko
   AUTOLOAD:=$(call AutoLoad,08,imxdrm imx-ipu-v3 imx-ipuv3-crtc)
 endef