From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1762219AbcLTHgf (ORCPT ); Tue, 20 Dec 2016 02:36:35 -0500 Received: from out1-smtp.messagingengine.com ([66.111.4.25]:60760 "EHLO out1-smtp.messagingengine.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1757453AbcLTHgd (ORCPT ); Tue, 20 Dec 2016 02:36:33 -0500 X-ME-Sender: X-Sasl-enc: z+Il2vhicDiJcN2fxlvg0cpO17Os9xnnENea1JVUq9ZY 1482219391 From: Andrew Jeffery To: Linus Walleij Cc: Andrew Jeffery , Rob Herring , Mark Rutland , Lee Jones , Joel Stanley , linux-gpio@vger.kernel.org, devicetree@vger.kernel.org, linux-kernel@vger.kernel.org Subject: [PATCH v4 1/5] pinctrl: aspeed: dt: Fix compatibles for the System Control Unit Date: Tue, 20 Dec 2016 18:05:47 +1030 Message-Id: <20161220073551.28522-2-andrew@aj.id.au> X-Mailer: git-send-email 2.9.3 In-Reply-To: <20161220073551.28522-1-andrew@aj.id.au> References: <20161220073551.28522-1-andrew@aj.id.au> Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Reference the SoC-specific compatible string in the examples as required. Signed-off-by: Andrew Jeffery --- Documentation/devicetree/bindings/pinctrl/pinctrl-aspeed.txt | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/Documentation/devicetree/bindings/pinctrl/pinctrl-aspeed.txt b/Documentation/devicetree/bindings/pinctrl/pinctrl-aspeed.txt index 2ad18c4ea55c..b2efb73337c6 100644 --- a/Documentation/devicetree/bindings/pinctrl/pinctrl-aspeed.txt +++ b/Documentation/devicetree/bindings/pinctrl/pinctrl-aspeed.txt @@ -11,9 +11,14 @@ Required properties: "aspeed,ast2500-pinctrl" "aspeed,g5-pinctrl" -The pin controller node should be a child of a syscon node with the required +The pin controller node should be the child of a syscon node with the required property: -- compatible: "syscon", "simple-mfd" + +- compatible : Should be one of the following: + "aspeed,ast2400-scu", "syscon", "simple-mfd" + "aspeed,g4-scu", "syscon", "simple-mfd" + "aspeed,ast2500-scu", "syscon", "simple-mfd" + "aspeed,g5-scu", "syscon", "simple-mfd" Refer to the the bindings described in Documentation/devicetree/bindings/mfd/syscon.txt @@ -50,7 +55,7 @@ TIMER7 TIMER8 VGABIOSROM Examples: syscon: scu@1e6e2000 { - compatible = "syscon", "simple-mfd"; + compatible = "aspeed,ast2400-scu", "syscon", "simple-mfd"; reg = <0x1e6e2000 0x1a8>; pinctrl: pinctrl { -- 2.9.3