From patchwork Fri Apr 12 10:36:29 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Christian Ruppert X-Patchwork-Id: 2434811 Return-Path: X-Original-To: patchwork-linux-arm@patchwork.kernel.org Delivered-To: patchwork-process-083081@patchwork2.kernel.org Received: from casper.infradead.org (casper.infradead.org [85.118.1.10]) by patchwork2.kernel.org (Postfix) with ESMTP id 88447DF2A1 for ; Fri, 12 Apr 2013 10:36:59 +0000 (UTC) Received: from merlin.infradead.org ([2001:4978:20e::2]) by casper.infradead.org with esmtps (Exim 4.80.1 #2 (Red Hat Linux)) id 1UQbLk-00058x-Hn; Fri, 12 Apr 2013 10:36:56 +0000 Received: from localhost ([::1] helo=merlin.infradead.org) by merlin.infradead.org with esmtp (Exim 4.80.1 #2 (Red Hat Linux)) id 1UQbLh-0000CF-BF; Fri, 12 Apr 2013 10:36:53 +0000 Received: from mail.abilis.ch ([195.70.19.74]) by merlin.infradead.org with esmtps (Exim 4.80.1 #2 (Red Hat Linux)) id 1UQbLe-0000Bv-7n for linux-arm-kernel@lists.infradead.org; Fri, 12 Apr 2013 10:36:51 +0000 Received: from vzimbra0.lan (vzimbra0.lan [10.41.22.42]) by mail.abilis.ch (8.13.8/8.13.8) with ESMTP id r3CAaWes018536; Fri, 12 Apr 2013 12:36:32 +0200 Received: from ab42.lan (ab42.lan [10.41.22.170]) by vzimbra0.lan (Postfix) with ESMTP id 7078D900D37; Fri, 12 Apr 2013 12:36:32 +0200 (CEST) Received: by ab42.lan (Postfix, from userid 2100) id 6102315FF; Fri, 12 Apr 2013 12:36:32 +0200 (CEST) From: Christian Ruppert To: Vineet Gupta , Gregory CLEMENT Subject: [PATCH] ARC: [TB10x] Adapt device tree to new compatible string Date: Fri, 12 Apr 2013 12:36:29 +0200 Message-Id: <1365762989-31638-1-git-send-email-christian.ruppert@abilis.com> X-Mailer: git-send-email 1.7.1 In-Reply-To: <5167D7E4.9030206@free-electrons.com> References: <5167D7E4.9030206@free-electrons.com> X-Spam-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,BAYES_00 autolearn=ham version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on dmmail0.lan X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20130412_063650_740142_DBD4A94E X-CRM114-Status: GOOD ( 11.92 ) X-Spam-Score: -0.2 (/) X-Spam-Report: SpamAssassin version 3.3.2 on merlin.infradead.org summary: Content analysis details: (-0.2 points) pts rule name description ---- ---------------------- -------------------------------------------------- 1.7 KHOP_BIG_TO_CC Sent to 10+ recipients instaed of Bcc or a list -1.9 BAYES_00 BODY: Bayes spam probability is 0 to 1% [score: 0.0000] Cc: Mike Turquette , linux-doc@vger.kernel.org, devicetree-discuss@lists.ozlabs.org, linux-kernel@vger.kernel.org, Rob Herring , Grant Likely , Rob Landley , Christian Ruppert , linux-arm-kernel@lists.infradead.org X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+patchwork-linux-arm=patchwork.kernel.org@lists.infradead.org The original device tree was written using a slightly different implementation of the fixed-factor-clock device tree binding. The compatible string must be modified in order to be compatible with the new implementation. Signed-off-by: Christian Ruppert --- arch/arc/boot/dts/abilis_tb10x.dtsi | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/arch/arc/boot/dts/abilis_tb10x.dtsi b/arch/arc/boot/dts/abilis_tb10x.dtsi index 6d80d9c..a6139fc 100644 --- a/arch/arc/boot/dts/abilis_tb10x.dtsi +++ b/arch/arc/boot/dts/abilis_tb10x.dtsi @@ -53,13 +53,13 @@ clock-output-names = "pll0"; }; cpu_clk: clkdiv_cpu { - compatible = "fixed-factor-clkdiv"; + compatible = "fixed-factor-clock"; #clock-cells = <0>; clocks = <&pll0>; clock-output-names = "cpu_clk"; }; ahb_clk: clkdiv_ahb { - compatible = "fixed-factor-clkdiv"; + compatible = "fixed-factor-clock"; #clock-cells = <0>; clocks = <&pll0>; clock-output-names = "ahb_clk";