From 4ee33b2d1972652e5460b22116e702a79d5a7ee1 Mon Sep 17 00:00:00 2001 From: Tao Huang Date: Sun, 27 Feb 2022 15:18:28 +0800 Subject: [PATCH] drm: DRM_EDID and DRM_DP default y if !ROCKCHIP_MINI_KERNEL DRM_EDID and DRM_DP default n if ROCKCHIP_MINI_KERNEL=y. Fixes: a92ed4afa97c ("drm/edid: add config option of edid function") Fixes: f031ad34e504 ("drm/rockchip: add config option of DRM DP support") Signed-off-by: Tao Huang Change-Id: I3e5b42381306edf31e95dfca8690a26a1683aecf --- drivers/gpu/drm/Kconfig | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/drivers/gpu/drm/Kconfig b/drivers/gpu/drm/Kconfig index fdcc8aad18e9..674f65d1348a 100644 --- a/drivers/gpu/drm/Kconfig +++ b/drivers/gpu/drm/Kconfig @@ -34,7 +34,7 @@ config DRM_MIPI_DBI config DRM_EDID bool "EDID function for DRM" depends on DRM - default y if !CPU_RV1106 && !CPU_RV1126 + default y if !ROCKCHIP_MINI_KERNEL help DRM EDID read and parse function. @@ -51,6 +51,7 @@ config DRM_DP depends on DRM depends on DRM_KMS_HELPER default y if DRM_ANALOGIX_DP + default y if !ROCKCHIP_MINI_KERNEL help Choose this option to support DP interface.