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 EE826C4167B for ; Fri, 1 Dec 2023 16:48:09 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1378531AbjLAQsB (ORCPT ); Fri, 1 Dec 2023 11:48:01 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:46198 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229460AbjLAQr7 (ORCPT ); Fri, 1 Dec 2023 11:47:59 -0500 Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id D0FB1F1 for ; Fri, 1 Dec 2023 08:48:05 -0800 (PST) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 6B125C433C8; Fri, 1 Dec 2023 16:48:05 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1701449285; bh=8sMbd6mi2mj87HGmh87batrSeTGY2fLhxpZz+q6caBM=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=eV9nbcis9yjo11yFJxro674gDs6Nfps35naoLGXl05FYu7SdvXh/oJ0gQN/FXRe1e euC70GQID5vcLaXK6CkVr4FfafEkR4CVZzOifgDWjIVPo/yG1UpZeVjk4F0cRX8sdd x+qujdUr53RdSin6031VsWLZb6U8K4ZOJVcuWcELZuQEvz3LllvcBhVKRhe14h78Bz MAB769pdptvulk+10x2MH75ssmwDN0TaS7mHp+wzgyiJVGq72lmJ7SihZfVh82wLQY 5q63PB1rW1NH9w4V0j7klEavilHb/JsdFNAKldNyPswHObuDktms76eUsj6DLgRYUL 2vbFSAxwvPXOQ== Received: from johan by xi.lan with local (Exim 4.96.2) (envelope-from ) id 1r96gz-0003J8-1E; Fri, 01 Dec 2023 17:48:41 +0100 Date: Fri, 1 Dec 2023 17:48:41 +0100 From: Johan Hovold To: Krzysztof Kozlowski Cc: Rob Herring , Johan Hovold , Lee Jones , Mauro Carvalho Chehab , Krzysztof Kozlowski , Conor Dooley , Andy Gross , Bjorn Andersson , Konrad Dybcio , linux-kernel@vger.kernel.org, devicetree@vger.kernel.org, linux-arm-msm@vger.kernel.org Subject: Re: [PATCH 2/4] dt-bindings: mfd: hisilicon,hi6421-spmi-pmic: fix example regulator node Message-ID: References: <20231130172547.12555-1-johan+linaro@kernel.org> <20231130172547.12555-3-johan+linaro@kernel.org> <20231201144017.GA974717-robh@kernel.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Fri, Dec 01, 2023 at 03:42:38PM +0100, Krzysztof Kozlowski wrote: > On 01/12/2023 15:40, Rob Herring wrote: > > On Thu, Nov 30, 2023 at 06:25:45PM +0100, Johan Hovold wrote: > >> The example regulator child nodes do not have unit addresses so drop the > >> incorrect '#address-cells' and '#size-cells' properties from the parent > >> node. > >> regulators { > >> - #address-cells = <1>; > >> - #size-cells = <0>; > >> - > > > > It's the right fix, but I have to wonder why these are not schema > > errors? Seems like something in the schemas needs fixing. > > Good point. The fix is just not sufficient. This binding explicitly > allow it, so it should be removed there as well. Ah, I missed that. Now fixed up in v2. Johan