From patchwork Wed Sep 21 09:32:49 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Viresh Kumar X-Patchwork-Id: 76677 Delivered-To: patch@linaro.org Received: by 10.140.106.72 with SMTP id d66csp1947468qgf; Wed, 21 Sep 2016 02:32:59 -0700 (PDT) X-Received: by 10.98.158.218 with SMTP id f87mr49009136pfk.179.1474450379130; Wed, 21 Sep 2016 02:32:59 -0700 (PDT) Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id zc1si17364312pac.259.2016.09.21.02.32.58; Wed, 21 Sep 2016 02:32:59 -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 dis=NONE) header.from=linaro.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754023AbcIUJc5 (ORCPT + 7 others); Wed, 21 Sep 2016 05:32:57 -0400 Received: from mail-pf0-f173.google.com ([209.85.192.173]:34766 "EHLO mail-pf0-f173.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751493AbcIUJc4 (ORCPT ); Wed, 21 Sep 2016 05:32:56 -0400 Received: by mail-pf0-f173.google.com with SMTP id p64so17518686pfb.1 for ; Wed, 21 Sep 2016 02:32:56 -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; bh=0WaZF96UdoJ6s4Dw67CkZbUp5wVGEiZ9m41TJvcaBxU=; b=fx8eZSsjGBp/c2/N7EYv18zHsJ4QX99PNCROgd6y8azbypsnUxIqAzllNr5ZNRjzyJ 3vvH/21d/Ah/lOJOIz4Ty3R+1f8dxAC6zqJUgGF6gMCaNRJ/HxGmc4RBNYZbbZ3a+xVJ Ubbtim0UfRV2gEkTf5uuP9Iy62jQTRItXVzQo= 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; bh=0WaZF96UdoJ6s4Dw67CkZbUp5wVGEiZ9m41TJvcaBxU=; b=IrifqiGREUc0Zvi6+IfSljaANZRdfWYahYn536WRIN0xZ/NebeV/EVJQ/zPIq3Zz5y ospaXShQBbIj7TeG/vA4GQBfcbl7RBdS4bc64Tn2pc6USKgJ9VfL7tsMjtQF1KXkzL1g oJeCc0jO0924GhnvXuN8yhvC83UN3bR78bn976F84HMJF64ShpyPTnxe11utJIY4P2iE ZKX778U7yE3ClQnfYWG0u0pQHYbwzxCXtX9bdAGngQBcpVTEC1e1lnbcg8IYShfqFS13 DguzzZHv4OEVB8Qz3QFULWEhmA1DBhk1s301YvJvYUzz9dxfATBANTCJzy5Q7MPAuwpn wKPw== X-Gm-Message-State: AE9vXwML6M7cXuO/n7Jb8YPefYrOfoEc+np9gcodvUfc0XrOOUp3ncBddo0K9zwxBIDlBCaJ X-Received: by 10.98.141.20 with SMTP id z20mr46614740pfd.165.1474450376226; Wed, 21 Sep 2016 02:32:56 -0700 (PDT) Received: from localhost ([122.172.39.60]) by smtp.gmail.com with ESMTPSA id f7sm24260034pfk.79.2016.09.21.02.32.55 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Wed, 21 Sep 2016 02:32:55 -0700 (PDT) From: Viresh Kumar To: Rafael Wysocki , Viresh Kumar , Nishanth Menon , Stephen Boyd Cc: linaro-kernel@lists.linaro.org, linux-pm@vger.kernel.org, linux-kernel@vger.kernel.org, Vincent Guittot , Viresh Kumar , devicetree@vger.kernel.org Subject: [PATCH 1/2] PM / OPP: compatible is an optional property Date: Wed, 21 Sep 2016 15:02:49 +0530 Message-Id: X-Mailer: git-send-email 2.7.1.410.g6faf27b Sender: devicetree-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: devicetree@vger.kernel.org It was never compulsory to have a compatible string in the OPP table. Fix the documentation to mark it optional. Also update its description a bit. Signed-off-by: Viresh Kumar --- Documentation/devicetree/bindings/opp/opp.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) -- 2.7.1.410.g6faf27b -- 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/Documentation/devicetree/bindings/opp/opp.txt b/Documentation/devicetree/bindings/opp/opp.txt index ee91cbdd95ee..5eab6f0215d1 100644 --- a/Documentation/devicetree/bindings/opp/opp.txt +++ b/Documentation/devicetree/bindings/opp/opp.txt @@ -55,14 +55,14 @@ This describes the OPPs belonging to a device. This node can have following properties: Required properties: -- compatible: Allow OPPs to express their compatibility. It should be: - "operating-points-v2". - - OPP nodes: One or more OPP nodes describing voltage-current-frequency combinations. Their name isn't significant but their phandle can be used to reference an OPP. Optional properties: +- compatible: Allow OPPs to express their compatibility. It should be + "operating-points-v2" or a vendor specific string. + - opp-shared: Indicates that device nodes using this OPP Table Node's phandle switch their DVFS state together, i.e. they share clock/voltage/current lines. Missing property means devices have independent clock/voltage/current lines,