From patchwork Thu Dec 1 10:58:14 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Viresh Kumar X-Patchwork-Id: 86008 Delivered-To: patch@linaro.org Received: by 10.140.20.101 with SMTP id 92csp633371qgi; Thu, 1 Dec 2016 02:58:32 -0800 (PST) X-Received: by 10.98.150.206 with SMTP id s75mr38818646pfk.155.1480589912813; Thu, 01 Dec 2016 02:58:32 -0800 (PST) Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id u3si40233703plb.141.2016.12.01.02.58.32; Thu, 01 Dec 2016 02:58:32 -0800 (PST) Received-SPF: pass (google.com: best guess record for domain of linux-pm-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 linux-pm-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-pm-owner@vger.kernel.org; dmarc=fail (p=NONE dis=NONE) header.from=linaro.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756967AbcLAK6b (ORCPT + 13 others); Thu, 1 Dec 2016 05:58:31 -0500 Received: from mail-pf0-f179.google.com ([209.85.192.179]:32844 "EHLO mail-pf0-f179.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755903AbcLAK6a (ORCPT ); Thu, 1 Dec 2016 05:58:30 -0500 Received: by mail-pf0-f179.google.com with SMTP id d2so45843628pfd.0 for ; Thu, 01 Dec 2016 02:58:30 -0800 (PST) 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=/MbMyDx+dh2drgIJoBuCuR1mvAIiudW9qvY0d6p/mG0=; b=YzK95gZp6zWxueVeOmMW4AmI7a5qG72k3PSw0Ly5GYHgLNCM+8Ouf+WRqoe6ik6yrz vk/C+Rua0WkWmvkJhNsFao8M98GaZ/FcNxpt9TphG5unC6bJr+15IyqLNZbZ6YDMKy6Z eZG2eS7YWm9jfnF2fZ9jnPbarK+FLzBz44g3A= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:cc:subject:date:message-id:in-reply-to :references:in-reply-to:references; bh=/MbMyDx+dh2drgIJoBuCuR1mvAIiudW9qvY0d6p/mG0=; b=MmxNnwimVoXTlG7TFKdvKRGifmHnPY76ugZMRYXGaIL+QeUq16BRBIvDsRDur15um1 kjfNUdkg5GLRYC4zzVKXZn4cvt15en2Dg/pMBgKAmYfECqKgrDfavP4isc2DrQdbKbJS j6xCXEu1Fz1TBY4HN/G0nW/1nDj6ayl92GsTGfiEEQDbLkVVbgeftX/8kvqeXeXUYWeg oA+8RL8QeZMBYFADI0rBUxhKME2SPS348wJ/XyF+iy0XsGAkOcT+cO/dBWbgoVQHhZb7 l/VX6M/RuJnF0cswM2r70X+xEGE7GexUgixEKdkDmfuBSfbd+0iZetknegQzMxCCDHHn yjKA== X-Gm-Message-State: AKaTC03C9/MExmwVdpgZTheozaH9VCBZzv0z94873QxzWOYG9iEtA7l1czOqYkuxqJFQw018 X-Received: by 10.98.155.146 with SMTP id e18mr38457754pfk.45.1480589910163; Thu, 01 Dec 2016 02:58:30 -0800 (PST) Received: from localhost ([122.172.143.30]) by smtp.gmail.com with ESMTPSA id u23sm109738846pfg.86.2016.12.01.02.58.29 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Thu, 01 Dec 2016 02:58:29 -0800 (PST) From: Viresh Kumar To: Rafael Wysocki , Viresh Kumar , Nishanth Menon , Stephen Boyd Cc: linaro-kernel@lists.linaro.org, linux-pm@vger.kernel.org, Vincent Guittot , robh@kernel.org, d-gerlach@ti.com, broonie@kernel.org, devicetree@vger.kernel.org, Viresh Kumar Subject: [PATCH V7 01/10] PM / OPP: Fix incorrect cpu-supply property in binding Date: Thu, 1 Dec 2016 16:28:14 +0530 Message-Id: X-Mailer: git-send-email 2.7.1.410.g6faf27b In-Reply-To: References: In-Reply-To: References: Sender: linux-pm-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-pm@vger.kernel.org The regulator bindings allow the "-supply" property to define a single parent supply and not a list of parents. Fix the wrong example code present in OPP bindings. While at it also change the compatible string as Rob pointed out earlier that none of A7 implementation have multiple supplies for the CPU core. Signed-off-by: Viresh Kumar Acked-by: Rob Herring Reviewed-by: Stephen Boyd --- Documentation/devicetree/bindings/opp/opp.txt | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) -- 2.7.1.410.g6faf27b -- To unsubscribe from this list: send the line "unsubscribe linux-pm" 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/Documentation/devicetree/bindings/opp/opp.txt b/Documentation/devicetree/bindings/opp/opp.txt index ee91cbdd95ee..f0239f68d186 100644 --- a/Documentation/devicetree/bindings/opp/opp.txt +++ b/Documentation/devicetree/bindings/opp/opp.txt @@ -386,10 +386,12 @@ Example 4: Handling multiple regulators / { cpus { cpu@0 { - compatible = "arm,cortex-a7"; + compatible = "vendor,cpu-type"; ... - cpu-supply = <&cpu_supply0>, <&cpu_supply1>, <&cpu_supply2>; + vcc0-supply = <&cpu_supply0>; + vcc1-supply = <&cpu_supply1>; + vcc2-supply = <&cpu_supply2>; operating-points-v2 = <&cpu0_opp_table>; }; };