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 bombadil.infradead.org (bombadil.infradead.org [198.137.202.133]) (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 B87E3C28D13 for ; Thu, 25 Aug 2022 10:22:25 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lists.infradead.org; s=bombadil.20210309; h=Sender: Content-Transfer-Encoding:Content-Type:List-Subscribe:List-Help:List-Post: List-Archive:List-Unsubscribe:List-Id:MIME-Version:References:In-Reply-To: Message-Id:Date:Subject:Cc:To:From:Reply-To:Content-ID:Content-Description: Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID: List-Owner; bh=2EV3iTnRsq1no2E+gK5pQ+ixJO4Zr4l7GEAY7YrJWEo=; b=TTKBiCUZBuAevL qSHFxVWhy697fKm6dN+cRLPe7ICjFrPI9ljq/GcHU2Y0KgqqTu2Ebf5ijI7x9f14AYScWlRg0OqwM 3tR0X7WauORQR8PGjTiO3NREzYmGG+A5nZJzAkiYD4DldSNgljhDS/MWAa/7bv8xwZ6VCyEibrGX0 3HKhs7guJjhUrmzsYFPhP+38211WevL2+I4ou8siVwEOGDYED9Dm/huiX2AcNH0HhGNSAGVY22eIU DqI/PEyWiCUVwfwzbugC4LObdJxeQyyfCAsxN+FkCVW6sWJSbrPxZXvGbWsfULRdzOEk2HRaryfQv BW6D72lLBqtDmYcsfSJQ==; Received: from localhost ([::1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.94.2 #2 (Red Hat Linux)) id 1oR9zF-00Bp6w-AJ; Thu, 25 Aug 2022 10:21:21 +0000 Received: from relay9-d.mail.gandi.net ([2001:4b98:dc4:8::229]) by bombadil.infradead.org with esmtps (Exim 4.94.2 #2 (Red Hat Linux)) id 1oR9yp-00Bowk-0l for linux-arm-kernel@lists.infradead.org; Thu, 25 Aug 2022 10:20:59 +0000 Received: (Authenticated sender: paul.kocialkowski@bootlin.com) by mail.gandi.net (Postfix) with ESMTPSA id D1EC3FF808; Thu, 25 Aug 2022 10:20:49 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=bootlin.com; s=gm1; t=1661422851; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=IzB+ZjeFxSubIbckJFHyy2gFTr+81Hl2oySEiG8m66Y=; b=PNJeFEyZENsQHhbvaHJVHs+IgPK1PEruJkam+lG5sVhzNaDcpGF+uMTTpKN0gXCOit0obf jvolvopZqirQfhtGluzFaHVDOcU37aUA5TeuCiewr43pB4v6tG5U2BCQgB5nAkx+Mkywdj GEj4QsNX0zkaWG9LwsYOfgFaF86Dlmu++Wbu1AQcmMJ8ze536UACfxTdheGKhpeCKt/6x5 ymh+nOER4PLiI0WzMm6W6hZjksre+VNQBk9UtzHlKuSehKuE6xQ7bki5s1ariFNLsZ9clY KMTNhGpd40WoAkMbuldNRKYwlfGI7NQd7LMHBn+3vi/Tnsrdm0fKC+9Et0sjcQ== From: Paul Kocialkowski To: linux-media@vger.kernel.org, linux-arm-kernel@lists.infradead.org, linux-sunxi@lists.linux.dev, linux-kernel@vger.kernel.org, linux-staging@lists.linux.dev Cc: Maxime Ripard , Mauro Carvalho Chehab , Chen-Yu Tsai , Jernej Skrabec , Samuel Holland , Paul Kocialkowski , Hans Verkuil , Sakari Ailus , Thomas Petazzoni Subject: [PATCH v2 2/7] media: sun8i-a83t-mipi-csi2: Add a Kconfig dependency on RESET_CONTROLLER Date: Thu, 25 Aug 2022 12:20:30 +0200 Message-Id: <20220825102035.419087-3-paul.kocialkowski@bootlin.com> X-Mailer: git-send-email 2.37.1 In-Reply-To: <20220825102035.419087-1-paul.kocialkowski@bootlin.com> References: <20220825102035.419087-1-paul.kocialkowski@bootlin.com> MIME-Version: 1.0 X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20220825_032055_225726_F7A08575 X-CRM114-Status: GOOD ( 12.28 ) X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+linux-arm-kernel=archiver.kernel.org@lists.infradead.org The driver relies on the reset controller API to work, so add RESET_CONTROLLER as one of its Kconfig dependencies. Fixes: 576d196c522b ("media: sunxi: Add support for the A83T MIPI CSI-2 controller") Signed-off-by: Paul Kocialkowski --- drivers/media/platform/sunxi/sun8i-a83t-mipi-csi2/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/media/platform/sunxi/sun8i-a83t-mipi-csi2/Kconfig b/drivers/media/platform/sunxi/sun8i-a83t-mipi-csi2/Kconfig index 789d58ee12ea..47a8c0fb7eb9 100644 --- a/drivers/media/platform/sunxi/sun8i-a83t-mipi-csi2/Kconfig +++ b/drivers/media/platform/sunxi/sun8i-a83t-mipi-csi2/Kconfig @@ -3,7 +3,7 @@ config VIDEO_SUN8I_A83T_MIPI_CSI2 tristate "Allwinner A83T MIPI CSI-2 Controller and D-PHY Driver" depends on V4L_PLATFORM_DRIVERS && VIDEO_DEV depends on ARCH_SUNXI || COMPILE_TEST - depends on PM && COMMON_CLK + depends on PM && COMMON_CLK && RESET_CONTROLLER select MEDIA_CONTROLLER select VIDEO_V4L2_SUBDEV_API select V4L2_FWNODE -- 2.37.1 _______________________________________________ linux-arm-kernel mailing list linux-arm-kernel@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-arm-kernel