From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id CF9ABC53210 for ; Sat, 31 Dec 2022 12:40:51 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S231965AbiLaMku (ORCPT ); Sat, 31 Dec 2022 07:40:50 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:59986 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S231977AbiLaMkk (ORCPT ); Sat, 31 Dec 2022 07:40:40 -0500 Received: from ams.source.kernel.org (ams.source.kernel.org [145.40.68.75]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 28C10E0E8; Sat, 31 Dec 2022 04:39:33 -0800 (PST) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ams.source.kernel.org (Postfix) with ESMTPS id C716BB80749; Sat, 31 Dec 2022 12:39:31 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 508BAC433EF; Sat, 31 Dec 2022 12:39:22 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1672490370; bh=mx2OEoQ00vSqiKzsxyaDjTk2k5bw+w3jkZu1Lmf8ACQ=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=eZd/kwpiFOUBGTlIS1G+av5YM+JBWzkzYMw1zXnui/S1DYIWTClPGCtpPzvKN1AUX TGD6ImyDKeWDB2WWV5FKv8Qqbx7n0kHffWXsoe1cd/7EbKkUEwVU3m4YjQjvM/FeWQ b306W4LzUY+McesE10aA1roaaCW8GDbmyEnMjIdrwxhaRSK9YIMbCv/w4plzI3l2py 2XI0GvQWJ8jAXLIbF1qW7Qguo7gW7yiVjfs5xPVUYpPWrrCASjF+MlVDLLLcNYKjHe QSN4t5FS8u0QVMjTUe7mVZfOH2JzJflhYmCg07R89Mb55rsSKoYnTaF0xo/MGg0Xur H683DuATLPC4A== Date: Sat, 31 Dec 2022 20:39:17 +0800 From: Shawn Guo To: Geert Uytterhoeven Cc: =?iso-8859-1?Q?Beno=EEt?= Cousson , Tony Lindgren , Joel Stanley , Andrew Jeffery , Avi Fishman , Tomer Maimon , Tali Perry , Patrick Venture , Nancy Yuen , Benjamin Fair , Dinh Nguyen , Sascha Hauer , Pengutronix Kernel Team , Stefan Agner , Li Yang , Russell King , Andrew Lunn , Gregory Clement , Sebastian Hesselbarth , Magnus Damm , Alexandre Belloni , UNGLinuxDriver@microchip.com, Thomas Bogendoerfer , Michael Ellerman , Nicholas Piggin , Christophe Leroy , Rob Herring , Krzysztof Kozlowski , linux-omap@vger.kernel.org, linux-arm-kernel@lists.infradead.org, linux-aspeed@lists.ozlabs.org, openbmc@lists.ozlabs.org, linux-renesas-soc@vger.kernel.org, linux-mips@vger.kernel.org, linuxppc-dev@lists.ozlabs.org, devicetree@vger.kernel.org Subject: Re: [PATCH 03/11] ARM: dts: imx: Fix pca9547 i2c-mux node name Message-ID: <20221231123916.GT6112@T480> References: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.9.4 (2018-02-28) Precedence: bulk List-ID: X-Mailing-List: devicetree@vger.kernel.org On Fri, Dec 02, 2022 at 05:49:18PM +0100, Geert Uytterhoeven wrote: > "make dtbs_check": > > arch/arm/boot/dts/imx53-ppd.dtb: i2c-switch@70: $nodename:0: 'i2c-switch@70' does not match '^(i2c-?)?mux' > From schema: Documentation/devicetree/bindings/i2c/i2c-mux-pca954x.yaml > arch/arm/boot/dts/imx53-ppd.dtb: i2c-switch@70: Unevaluated properties are not allowed ('#address-cells', '#size-cells', 'i2c@0', 'i2c@1', 'i2c@2', 'i2c@3', 'i2c@4', 'i2c@5', 'i2c@6', 'i2c@7' were unexpected) > From schema: Documentation/devicetree/bindings/i2c/i2c-mux-pca954x.yaml > > Fix this by renaming the PCA9547 node to "i2c-mux", to match the I2C bus > multiplexer/switch DT bindings and the Generic Names Recommendation in > the Devicetree Specification. > > Signed-off-by: Geert Uytterhoeven Applied, thanks!