From patchwork Thu Oct 3 15:48:42 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Maxime Ripard X-Patchwork-Id: 11172789 Return-Path: Received: from mail.kernel.org (pdx-korg-mail-1.web.codeaurora.org [172.30.200.123]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id 6ABC113B1 for ; Thu, 3 Oct 2019 15:48:53 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 37052222C7 for ; Thu, 3 Oct 2019 15:48:53 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1570117733; bh=F5+Id2+i4uSkOnDF22aTVmR46OVB1/MDlfPr46K2ROk=; h=From:To:Cc:Subject:Date:In-Reply-To:References:List-ID:From; b=XOq4yCgZY24oE2aC3rVzFldjyp4JbkudlfQXEuaSrdI+IkEY840cntK5j6CPhFVwG 4wjFpn0sAs1Jiw6DuImE7zu4G3C61u0JetkTh62govCcIk8/7Zq/xnAffmgCzQy7O+ 6JsaU1riB9JU7NSyWZI/f9vEJj5IPffgPxMHaog8= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1729528AbfJCPsw (ORCPT ); Thu, 3 Oct 2019 11:48:52 -0400 Received: from mail.kernel.org ([198.145.29.99]:59970 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1727024AbfJCPsw (ORCPT ); Thu, 3 Oct 2019 11:48:52 -0400 Received: from localhost (lfbn-1-10718-76.w90-89.abo.wanadoo.fr [90.89.68.76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id 491F920700; Thu, 3 Oct 2019 15:48:51 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1570117731; bh=F5+Id2+i4uSkOnDF22aTVmR46OVB1/MDlfPr46K2ROk=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=eJmp3yq38oxw9CiZZkmwvg/ssf1SpaEMEirw53bQ8mbE3FmHpz6b9JFgOIWtXquUG H1HbPagLs3aV5GbnWnj9Xxpl5vBdgUSoqCCQXZjjU4glX1xVWWhw3XE5+6Me8JmLv8 PmUbPR63eYgFpR+vQyjYAEuu1Rq21fVB5l2wlbjM= From: Maxime Ripard To: Mark Rutland , Rob Herring , Frank Rowand , sakari.ailus@linux.intel.com, mchehab@kernel.org Cc: linux-media@vger.kernel.org, devicetree@vger.kernel.org, linux-arm-kernel@lists.infradead.org, Chen-Yu Tsai , Maxime Ripard Subject: [PATCH 2/2] ARM: dts: sun7i: Drop the module clock from the device tree Date: Thu, 3 Oct 2019 17:48:42 +0200 Message-Id: <20191003154842.248763-2-mripard@kernel.org> X-Mailer: git-send-email 2.23.0 In-Reply-To: <20191003154842.248763-1-mripard@kernel.org> References: <20191003154842.248763-1-mripard@kernel.org> MIME-Version: 1.0 Sender: linux-media-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-media@vger.kernel.org What we thought would be the module clock is actually the clock meant to be used by the sensors, and play no role in the CSI controller. Now that the binding has been updated to reflect that, let's update the device tree too. Fixes: d2b9c6444301 ("ARM: dts: sun7i: Add CSI0 controller") Reported-by: Chen-Yu Tsai Signed-off-by: Maxime Ripard --- arch/arm/boot/dts/sun7i-a20.dtsi | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/arch/arm/boot/dts/sun7i-a20.dtsi b/arch/arm/boot/dts/sun7i-a20.dtsi index 874231be04e4..8aebefd6accf 100644 --- a/arch/arm/boot/dts/sun7i-a20.dtsi +++ b/arch/arm/boot/dts/sun7i-a20.dtsi @@ -380,9 +380,8 @@ compatible = "allwinner,sun7i-a20-csi0"; reg = <0x01c09000 0x1000>; interrupts = ; - clocks = <&ccu CLK_AHB_CSI0>, <&ccu CLK_CSI0>, - <&ccu CLK_CSI_SCLK>, <&ccu CLK_DRAM_CSI0>; - clock-names = "bus", "mod", "isp", "ram"; + clocks = <&ccu CLK_AHB_CSI0>, <&ccu CLK_CSI_SCLK>, <&ccu CLK_DRAM_CSI0>; + clock-names = "bus", "isp", "ram"; resets = <&ccu RST_CSI0>; status = "disabled"; };