From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id B218F436A1 for ; Fri, 22 Sep 2023 21:12:03 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 593D7C433C8; Fri, 22 Sep 2023 21:12:02 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1695417123; bh=PklVl2hK9R9Q6EgrD2sgcoUGkMduL6hc3uwF7Wh8zfw=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=Pr343hPZKuXyRCteT9bzGAl17KD+LyM0KpclJcQIjazwXH305R+Ontaa+XERY+n/7 yjC44OSdyWFHwfWX0V0/b38fGqv4mIo/0cuyYT31J8ukHXICdMytTpwlHXBNZwQsnZ 8DAV779ofqaIKwvGU2N4b+Xz05ccxFPM4ZicVziQfmb1+j1gjqllQs2fKi6KwDymHP XcJGsO4pruV8hU1pvS3DPK5fnri2Q0vEyeUJJCV8PpfS9GJuYkKEJVn0zOQfQA2bJn qok/D9hbDd8jleq5iEKSgjZhqoPd83GGHD4+DSVRazwdmlNM2NEtKIp2ymEQctezIg //fZwZOsaX9Tg== Received: (nullmailer pid 3627011 invoked by uid 1000); Fri, 22 Sep 2023 21:12:01 -0000 Date: Fri, 22 Sep 2023 16:12:01 -0500 From: Rob Herring To: Antoniu Miclaus Cc: Daniel Matyas , Jean Delvare , Guenter Roeck , Krzysztof Kozlowski , Conor Dooley , linux-hwmon@vger.kernel.org, devicetree@vger.kernel.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH 1/2] dt-bindings: hwmon: max31827: use supply pin name Message-ID: <20230922211201.GA3600661-robh@kernel.org> References: <20230921142005.102263-1-antoniu.miclaus@analog.com> Precedence: bulk X-Mailing-List: devicetree@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20230921142005.102263-1-antoniu.miclaus@analog.com> On Thu, Sep 21, 2023 at 05:20:03PM +0300, Antoniu Miclaus wrote: > The actual hardware pin name for the supply of max31827 is vdd. > Update the dt-binding to reflect the hardware properties accordingly. Changing this breaks the ABI. I see the old one wasn't used by the driver, but that's just one driver potentially. You need some justification here why it's okay to break the ABI. > > Signed-off-by: Antoniu Miclaus > --- > Documentation/devicetree/bindings/hwmon/adi,max31827.yaml | 6 +++--- > 1 file changed, 3 insertions(+), 3 deletions(-) > > diff --git a/Documentation/devicetree/bindings/hwmon/adi,max31827.yaml b/Documentation/devicetree/bindings/hwmon/adi,max31827.yaml > index 2dc8b07b4d3b..21f2d350373b 100644 > --- a/Documentation/devicetree/bindings/hwmon/adi,max31827.yaml > +++ b/Documentation/devicetree/bindings/hwmon/adi,max31827.yaml > @@ -27,7 +27,7 @@ properties: > reg: > maxItems: 1 > > - vref-supply: > + vdd-supply: > description: > Must have values in the interval (1.6V; 3.6V) in order for the device to > function correctly. > @@ -35,7 +35,7 @@ properties: > required: > - compatible > - reg > - - vref-supply > + - vdd-supply > > additionalProperties: false > > @@ -48,7 +48,7 @@ examples: > temperature-sensor@42 { > compatible = "adi,max31827"; > reg = <0x42>; > - vref-supply = <®_vdd>; > + vdd-supply = <®_vdd>; > }; > }; > ... > -- > 2.42.0 >