From patchwork Sat Dec 11 22:18:48 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Lucas Stach X-Patchwork-Id: 12672089 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from gabe.freedesktop.org (gabe.freedesktop.org [131.252.210.177]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id 7A6C8C433EF for ; Sat, 11 Dec 2021 22:19:31 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id D0C1F10E329; Sat, 11 Dec 2021 22:19:25 +0000 (UTC) Received: from lynxeye.de (ns.lynxeye.de [87.118.118.114]) by gabe.freedesktop.org (Postfix) with ESMTP id A6B5910E2B4 for ; Sat, 11 Dec 2021 22:19:23 +0000 (UTC) Received: by lynxeye.de (Postfix, from userid 501) id 03A4BE74217; Sat, 11 Dec 2021 23:18:52 +0100 (CET) Received: from astat.fritz.box (a89-183-15-126.net-htp.de [89.183.15.126]) by lynxeye.de (Postfix) with ESMTPA id DB3F6E74214; Sat, 11 Dec 2021 23:18:51 +0100 (CET) From: Lucas Stach To: Laurentiu Palcu , Philipp Zabel Subject: [PATCH 2/2] drm/imx/dcss: select DRM_KMS_HELPER Date: Sat, 11 Dec 2021 23:18:48 +0100 Message-Id: <20211211221848.1665958-2-dev@lynxeye.de> X-Mailer: git-send-email 2.31.1 In-Reply-To: <20211211221848.1665958-1-dev@lynxeye.de> References: <20211211221848.1665958-1-dev@lynxeye.de> MIME-Version: 1.0 X-BeenThere: dri-devel@lists.freedesktop.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Direct Rendering Infrastructure - Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: dri-devel@lists.freedesktop.org Errors-To: dri-devel-bounces@lists.freedesktop.org Sender: "dri-devel" DCSS can not be built without the DRM_KMS_HELPERs being available. Select this symbol to disallow this invalid configuration. Signed-off-by: Lucas Stach Reviewed-by: Laurentiu Palcu --- drivers/gpu/drm/imx/dcss/Kconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/gpu/drm/imx/dcss/Kconfig b/drivers/gpu/drm/imx/dcss/Kconfig index 2b17a964ff05..4c2158dc5540 100644 --- a/drivers/gpu/drm/imx/dcss/Kconfig +++ b/drivers/gpu/drm/imx/dcss/Kconfig @@ -1,6 +1,7 @@ config DRM_IMX_DCSS tristate "i.MX8MQ DCSS" select IMX_IRQSTEER + select DRM_KMS_HELPER select DRM_KMS_CMA_HELPER select VIDEOMODE_HELPERS depends on DRM && ARCH_MXC && ARM64