From mboxrd@z Thu Jan 1 00:00:00 1970 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 phobos.denx.de (phobos.denx.de [85.214.62.61]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id A6F91C369B2 for ; Sat, 12 Apr 2025 14:31:19 +0000 (UTC) Received: from h2850616.stratoserver.net (localhost [IPv6:::1]) by phobos.denx.de (Postfix) with ESMTP id B19A282D4A; Sat, 12 Apr 2025 16:31:09 +0200 (CEST) Authentication-Results: phobos.denx.de; dmarc=pass (p=none dis=none) header.from=riseup.net Authentication-Results: phobos.denx.de; spf=pass smtp.mailfrom=u-boot-bounces@lists.denx.de Authentication-Results: phobos.denx.de; dkim=pass (1024-bit key; secure) header.d=riseup.net header.i=@riseup.net header.b="a3vo9/jz"; dkim-atps=neutral Received: by phobos.denx.de (Postfix, from userid 109) id 8057782D39; Sat, 12 Apr 2025 16:31:07 +0200 (CEST) Received: from mx0.riseup.net (mx0.riseup.net [198.252.153.6]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) (No client certificate requested) by phobos.denx.de (Postfix) with ESMTPS id E3E7E82D39 for ; Sat, 12 Apr 2025 16:31:04 +0200 (CEST) Authentication-Results: phobos.denx.de; dmarc=pass (p=none dis=none) header.from=riseup.net Authentication-Results: phobos.denx.de; spf=pass smtp.mailfrom=danct12@riseup.net Received: from fews01-sea.riseup.net (fews01-sea-pn.riseup.net [10.0.1.109]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by mx0.riseup.net (Postfix) with ESMTPS id 4ZZbZZ6DzXz9w8J; Sat, 12 Apr 2025 14:31:02 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=riseup.net; s=squak; t=1744468263; bh=3Enr3ys4yTYiNS8QTtwRoGMZBSVmnPlj9OH6MYiyxgU=; h=From:Date:Subject:References:In-Reply-To:To:Cc:From; b=a3vo9/jz7rp2Z+Ql9LlM6o1Hn3At//GGbzOzoYiZjSv3zJPG2eLmOaOWCdUAGupbl q1au/jtWjIx+bj4ZEbDCxVGm4pCS1rpKYbrHAEzyl7Z5eu59DJ4vFSXQc6/DXneb9f IyxnLuIEg2tBjD16AX/CWAlYTdBKRXNzPWqp8EM4= X-Riseup-User-ID: 0751270E1639ACC4BBE7F0B5FD92321D63E35BDD0F4E898F54541A02194A934F Received: from [127.0.0.1] (localhost [127.0.0.1]) by fews01-sea.riseup.net (Postfix) with ESMTPSA id 4ZZbZW2p71zJtSD; Sat, 12 Apr 2025 14:30:59 +0000 (UTC) From: Dang Huynh Date: Sat, 12 Apr 2025 21:27:03 +0700 Subject: [PATCH v3 01/12] video: rockchip: dw-mipi-dsi: Depend on CONFIG_VIDEO_BRIDGE MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit Message-Id: <20250412-vop2-pt2-v3-1-7c796db335e9@riseup.net> References: <20250412-vop2-pt2-v3-0-7c796db335e9@riseup.net> In-Reply-To: <20250412-vop2-pt2-v3-0-7c796db335e9@riseup.net> To: Anatolij Gustschin , Simon Glass , Philipp Tomsich , Kever Yang , Tom Rini , Nicolas Frattaroli , Jonas Karlman , Ondrej Jirman , Dragan Simic , Svyatoslav Ryhel , Lukasz Majewski , Sean Anderson Cc: Nicolas Frattaroli , u-boot@lists.denx.de, Piotr Zalewski , Dang Huynh X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.39 Precedence: list List-Id: U-Boot discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: u-boot-bounces@lists.denx.de Sender: "U-Boot" X-Virus-Scanned: clamav-milter 0.103.8 at phobos.denx.de X-Virus-Status: Clean The driver is in video bridge class, so we must depend on it or the driver will fail to init. Reviewed-by: Svyatoslav Ryhel Signed-off-by: Dang Huynh --- drivers/video/rockchip/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/video/rockchip/Kconfig b/drivers/video/rockchip/Kconfig index 01804dcb1cc8743e738d32540bea6c8539e51ab4..72fcd6715a69e522f2ba6e8de9c1a923106ca10f 100644 --- a/drivers/video/rockchip/Kconfig +++ b/drivers/video/rockchip/Kconfig @@ -71,7 +71,7 @@ config DISPLAY_ROCKCHIP_MIPI config DISPLAY_ROCKCHIP_DW_MIPI bool "Rockchip Designware MIPI" - depends on VIDEO_ROCKCHIP + depends on VIDEO_ROCKCHIP && VIDEO_BRIDGE select VIDEO_DW_MIPI_DSI help Select the Designware MIPI DSI controller in use on some Rockchip -- 2.49.0