From: Geert Uytterhoeven Date: Tue, 10 Nov 2020 14:42:19 +0000 (+0100) Subject: drm: DRM_KMB_DISPLAY should select DRM_MIPI_DSI X-Git-Tag: accepted/tizen/unified/20230118.172025~6402^2~28^2~1446 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=dc0636b837ae0496134cd3c8107f527ae6579f85;p=platform%2Fkernel%2Flinux-rpi.git drm: DRM_KMB_DISPLAY should select DRM_MIPI_DSI If CONFIG_DRM_MIPI_DSI=n: aarch64-linux-gnu-ld: drivers/gpu/drm/kmb/kmb_dsi.o: in function `kmb_dsi_host_unregister': kmb_dsi.c:(.text+0xa48): undefined reference to `mipi_dsi_host_unregister' aarch64-linux-gnu-ld: drivers/gpu/drm/kmb/kmb_dsi.o: in function `kmb_dsi_host_bridge_init': kmb_dsi.c:(.text+0xb14): undefined reference to `mipi_dsi_host_register' Fix this be selecting DRM_MIPI_DSI, like other drivers do. Fixes: ed794057b052b52a ("drm/kmb: Build files for KeemBay Display driver") Signed-off-by: Geert Uytterhoeven Signed-off-by: Daniel Vetter Link: https://patchwork.freedesktop.org/patch/msgid/20201110144219.3278831-1-geert+renesas@glider.be --- diff --git a/drivers/gpu/drm/kmb/Kconfig b/drivers/gpu/drm/kmb/Kconfig index 2dd7e68..022ef3e 100644 --- a/drivers/gpu/drm/kmb/Kconfig +++ b/drivers/gpu/drm/kmb/Kconfig @@ -5,6 +5,7 @@ config DRM_KMB_DISPLAY select DRM_KMS_HELPER select DRM_KMS_CMA_HELPER select DRM_GEM_CMA_HELPER + select DRM_MIPI_DSI help Choose this option if you have Intel's KeemBay SOC which integrates an ARM Cortex A53 CPU with an Intel Movidius VPU.