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 mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id BE6A4C433FE for ; Thu, 7 Oct 2021 15:49:45 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id A0BCF61074 for ; Thu, 7 Oct 2021 15:49:45 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S233867AbhJGPvi (ORCPT ); Thu, 7 Oct 2021 11:51:38 -0400 Received: from mail.kernel.org ([198.145.29.99]:51958 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S232870AbhJGPvi (ORCPT ); Thu, 7 Oct 2021 11:51:38 -0400 Received: from jic23-huawei (cpc108967-cmbg20-2-0-cust86.5-4.cable.virginm.net [81.101.6.87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id 4D8B9610E6; Thu, 7 Oct 2021 15:49:40 +0000 (UTC) Date: Thu, 7 Oct 2021 16:53:44 +0100 From: Jonathan Cameron To: Mihail Chindris Cc: , , , , , , , , Rob Herring , Alexandru Ardelean Subject: Re: [PATCH v6 5/6] Documentation:devicetree:bindings:iio:dac: Fix val Message-ID: <20211007165344.6a966a93@jic23-huawei> In-Reply-To: <20211007080035.2531-6-mihail.chindris@analog.com> References: <20211007080035.2531-1-mihail.chindris@analog.com> <20211007080035.2531-6-mihail.chindris@analog.com> X-Mailer: Claws Mail 4.0.0 (GTK+ 3.24.30; x86_64-pc-linux-gnu) MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Precedence: bulk List-ID: X-Mailing-List: devicetree@vger.kernel.org On Thu, 7 Oct 2021 08:00:36 +0000 Mihail Chindris wrote: > A correct value for output-range-microvolts is -5 to 5 Volts > not -5 to 5 milivolts > > Fixes: e904cc899293f ("dt-bindings: iio: dac: AD5766 yaml documentation") > Signed-off-by: Mihail Chindris > Reviewed-by: Alexandru Ardelean Whilst it's only a trivial fix to an example it seems to me a worthwhile thing to backport and avoid people using old trees seeing the wrong example Applied to the fixes-togreg branch of iio.git and marked for stable. Thanks, Jonathan > --- > Documentation/devicetree/bindings/iio/dac/adi,ad5766.yaml | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/Documentation/devicetree/bindings/iio/dac/adi,ad5766.yaml b/Documentation/devicetree/bindings/iio/dac/adi,ad5766.yaml > index d5c54813ce87..a8f7720d1e3e 100644 > --- a/Documentation/devicetree/bindings/iio/dac/adi,ad5766.yaml > +++ b/Documentation/devicetree/bindings/iio/dac/adi,ad5766.yaml > @@ -54,7 +54,7 @@ examples: > > ad5766@0 { > compatible = "adi,ad5766"; > - output-range-microvolts = <(-5000) 5000>; > + output-range-microvolts = <(-5000000) 5000000>; > reg = <0>; > spi-cpol; > spi-max-frequency = <1000000>;