From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Andrew Jeffery" Subject: =?UTF-8?Q?Re:_[PATCH]_dt-bindings:_pinctrl:_aspeed:_Fix_'compatible'_sch?= =?UTF-8?Q?ema_errors?= Date: Wed, 17 Jul 2019 13:21:54 +0930 Message-ID: <7b027585-27ab-4070-bf2e-5d08800e1a90@www.fastmail.com> References: <20190715223725.12924-1-robh@kernel.org> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: In-Reply-To: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+linux-arm-kernel=m.gmane.org@lists.infradead.org To: Rob Herring , Joel Stanley Cc: devicetree , Linus Walleij , Linux ARM , linux-aspeed@lists.ozlabs.org, "open list:GPIO SUBSYSTEM" List-Id: devicetree@vger.kernel.org On Wed, 17 Jul 2019, at 00:35, Rob Herring wrote: > On Mon, Jul 15, 2019 at 5:17 PM Joel Stanley wrote: > > > > On Mon, 15 Jul 2019 at 22:37, Rob Herring wrote: > > > > > > The Aspeed pinctl schema have errors in the 'compatible' schema: > > > > > > Documentation/devicetree/bindings/pinctrl/aspeed,ast2400-pinctrl.yaml: \ > > > properties:compatible:enum: ['aspeed', 'ast2400-pinctrl', 'aspeed', 'g4-pinctrl'] has non-unique elements > > > Documentation/devicetree/bindings/pinctrl/aspeed,ast2500-pinctrl.yaml: \ > > > properties:compatible:enum: ['aspeed', 'ast2500-pinctrl', 'aspeed', 'g5-pinctrl'] has non-unique elements > > > > > > Flow style sequences have to be quoted if the vales contain ','. Fix > > > this by using the more common one line per entry formatting. > > > > > > > > properties: > > > compatible: > > > - enum: [ aspeed,ast2400-pinctrl, aspeed,g4-pinctrl ] > > > + enum: > > > + - aspeed,ast2400-pinctrl > > > + - aspeed,g4-pinctrl > > > > Thanks for the fix. However, we've standardised on the first form for > > all of our device trees, so we can drop the second compatible string > > from the bindings. > > Doing that would introduce validation warnings until the dts file is > updated. So we still need this change until that happens. My series takes care of that. Andrew