From patchwork Thu Apr 20 05:44:16 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Viresh Kumar X-Patchwork-Id: 97711 Delivered-To: patch@linaro.org Received: by 10.140.109.52 with SMTP id k49csp637248qgf; Wed, 19 Apr 2017 22:48:28 -0700 (PDT) X-Received: by 10.99.181.92 with SMTP id u28mr6415663pgo.102.1492667308888; Wed, 19 Apr 2017 22:48:28 -0700 (PDT) Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id d21si5237508pfe.347.2017.04.19.22.48.28; Wed, 19 Apr 2017 22:48:28 -0700 (PDT) Received-SPF: pass (google.com: best guess record for domain of devicetree-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; dkim=neutral (body hash did not verify) header.i=@linaro.org; spf=pass (google.com: best guess record for domain of devicetree-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=devicetree-owner@vger.kernel.org; dmarc=fail (p=NONE sp=NONE dis=NONE) header.from=linaro.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S940594AbdDTFs0 (ORCPT + 7 others); Thu, 20 Apr 2017 01:48:26 -0400 Received: from mail-io0-f175.google.com ([209.85.223.175]:35923 "EHLO mail-io0-f175.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S965328AbdDTFpY (ORCPT ); Thu, 20 Apr 2017 01:45:24 -0400 Received: by mail-io0-f175.google.com with SMTP id o22so59389198iod.3 for ; Wed, 19 Apr 2017 22:45:19 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linaro.org; s=google; h=from:to:cc:subject:date:message-id:in-reply-to:references :in-reply-to:references; bh=2MvvFNMNbY/7bP6jtsFVmiVjxaZOVmMg1W80zVGdh24=; b=dr+ESpO0p4Zf4EX/kpDh0qAAv/2oMlC5LPuMcS6altIWxMuMQDkQGEEG6mNJjDZI3T foPBNvJVnLl8xUOfVQbJ1XaGXneS6Ljro3mUVeDWsZh0DiSvnMghrTqrKv3Qc/IYxpyO 1yLqFqG+0hXyLaSdSDhgTJGXIGLpAkZqUYsyE= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:date:message-id:in-reply-to :references:in-reply-to:references; bh=2MvvFNMNbY/7bP6jtsFVmiVjxaZOVmMg1W80zVGdh24=; b=OJKr4SsFIIqP/3d+RxMuylxLkgu0L67pOLm09OfyeKgdppbfY7ZHpzhQovZknJf9dM E5A7dYjIm5zrOX9IPLx/CIcDw8OyI9vyF/7hoQaM8tjgyoaY1TtWluOlV5HDnLQUAoWH QM+3ek2oLgtiMQCcG3vEzb/RKtzqAne7Meh7+OnKKkKyxwVvD9atY+FClHoj++TgP1SD CrFZDehcZaKCILeelX539Mg6ukygchu4JLJOFAQAwPrWk4Ilyex/7Z+f7KG+Joa/Ig8e z70HCfzhLcTBi10a3vIyM4YkD2gbfb84CkQDXBB1VPXcS2zyRziNRbOAslYfOid7aVgo togA== X-Gm-Message-State: AN3rC/5INyktV0ekALz0YlHL0o8+ojNpC8Sud2ryzL7XvvmpjZNjRI9b H8eeWDA9Sz5PoUa+ X-Received: by 10.99.111.1 with SMTP id k1mr6358199pgc.194.1492667117600; Wed, 19 Apr 2017 22:45:17 -0700 (PDT) Received: from localhost ([122.172.121.5]) by smtp.gmail.com with ESMTPSA id p62sm7695405pfi.7.2017.04.19.22.45.16 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Wed, 19 Apr 2017 22:45:17 -0700 (PDT) From: Viresh Kumar To: arm@kernel.org, Rob Herring , Mark Rutland , Maxime Ripard , Chen-Yu Tsai Cc: linaro-kernel@lists.linaro.org, linux-arm-kernel@lists.infradead.org, linux-pm@vger.kernel.org, Rafael Wysocki , Viresh Kumar , Krzysztof Kozlowski , Masahiro Yamada , Rob Herring , devicetree@vger.kernel.org, linux-kernel@vger.kernel.org Subject: [PATCH V4 5/7] ARM: sun8i: Use - instead of @ for DT OPP entries Date: Thu, 20 Apr 2017 11:14:16 +0530 Message-Id: X-Mailer: git-send-email 2.12.0.432.g71c3a4f4ba37 In-Reply-To: References: In-Reply-To: References: Sender: devicetree-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: devicetree@vger.kernel.org Compiling the DT file with W=1, DTC warns like follows: Warning (unit_address_vs_reg): Node /opp_table0/opp@1000000000 has a unit name, but no reg property Fix this by replacing '@' with '-' as the OPP nodes will never have a "reg" property. Reported-by: Krzysztof Kozlowski Reported-by: Masahiro Yamada Suggested-by: Mark Rutland Signed-off-by: Viresh Kumar Acked-by: Maxime Ripard Acked-by: Rob Herring --- arch/arm/boot/dts/sun8i-a33.dtsi | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) -- 2.12.0.432.g71c3a4f4ba37 -- To unsubscribe from this list: send the line "unsubscribe devicetree" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html diff --git a/arch/arm/boot/dts/sun8i-a33.dtsi b/arch/arm/boot/dts/sun8i-a33.dtsi index 306af6cadf26..a2c555d6475c 100644 --- a/arch/arm/boot/dts/sun8i-a33.dtsi +++ b/arch/arm/boot/dts/sun8i-a33.dtsi @@ -49,19 +49,19 @@ compatible = "operating-points-v2"; opp-shared; - opp@648000000 { + opp-648000000 { opp-hz = /bits/ 64 <648000000>; opp-microvolt = <1040000>; clock-latency-ns = <244144>; /* 8 32k periods */ }; - opp@816000000 { + opp-816000000 { opp-hz = /bits/ 64 <816000000>; opp-microvolt = <1100000>; clock-latency-ns = <244144>; /* 8 32k periods */ }; - opp@1008000000 { + opp-1008000000 { opp-hz = /bits/ 64 <1008000000>; opp-microvolt = <1200000>; clock-latency-ns = <244144>; /* 8 32k periods */