From: Krzysztof Kozlowski Date: Mon, 16 Nov 2020 17:53:01 +0000 (+0100) Subject: drm/ingenic: depend on COMMON_CLK to fix compile tests X-Git-Tag: v5.12-rc1~132^2~24^2~183 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=9f941375aa1d2e4aff596f8bf37abc00549989dd;p=thirdparty%2Fkernel%2Flinux.git drm/ingenic: depend on COMMON_CLK to fix compile tests The Ingenic DRM uses Common Clock Framework thus it cannot be built on platforms without it (e.g. compile test on MIPS with RALINK and SOC_RT305X): /usr/bin/mips-linux-gnu-ld: drivers/gpu/drm/ingenic/ingenic-drm-drv.o: in function `ingenic_drm_bind.isra.0': ingenic-drm-drv.c:(.text+0x1600): undefined reference to `clk_get_parent' /usr/bin/mips-linux-gnu-ld: ingenic-drm-drv.c:(.text+0x16b0): undefined reference to `clk_get_parent' Reported-by: kernel test robot Signed-off-by: Krzysztof Kozlowski Signed-off-by: Paul Cercueil Link: https://patchwork.freedesktop.org/patch/msgid/20201116175301.402787-2-krzk@kernel.org --- diff --git a/drivers/gpu/drm/ingenic/Kconfig b/drivers/gpu/drm/ingenic/Kconfig index 477d5387e43ea..3b57f8be007c4 100644 --- a/drivers/gpu/drm/ingenic/Kconfig +++ b/drivers/gpu/drm/ingenic/Kconfig @@ -4,6 +4,7 @@ config DRM_INGENIC depends on DRM depends on CMA depends on OF + depends on COMMON_CLK select DRM_BRIDGE select DRM_PANEL_BRIDGE select DRM_KMS_HELPER