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 X-Spam-Level: X-Spam-Status: No, score=-11.2 required=3.0 tests=BAYES_00, HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_PATCH,MAILING_LIST_MULTI,SIGNED_OFF_BY, SPF_HELO_NONE,SPF_PASS,USER_AGENT_SANE_2 autolearn=unavailable autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id CB4BEC433E6 for ; Sat, 29 Aug 2020 18:04:45 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id B9F01206B5 for ; Sat, 29 Aug 2020 18:04:45 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1728351AbgH2SEo (ORCPT ); Sat, 29 Aug 2020 14:04:44 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:57624 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1728265AbgH2SEo (ORCPT ); Sat, 29 Aug 2020 14:04:44 -0400 X-Greylist: delayed 402 seconds by postgrey-1.37 at lindbergh.monkeyblade.net; Sat, 29 Aug 2020 11:04:43 PDT Received: from saturn.retrosnub.co.uk (saturn.retrosnub.co.uk [IPv6:2a00:1098:86::1:1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 2889FC061236 for ; Sat, 29 Aug 2020 11:04:43 -0700 (PDT) Received: from archlinux (cpc149474-cmbg20-2-0-cust94.5-4.cable.virginm.net [82.4.196.95]) by saturn.retrosnub.co.uk (Postfix; Retrosnub mail submission) with ESMTPSA id 317669E01D1; Sat, 29 Aug 2020 18:57:55 +0100 (BST) Date: Sat, 29 Aug 2020 18:57:53 +0100 From: Jonathan Cameron To: linux-iio@vger.kernel.org Cc: Rob Herring , devicetree@vger.kernel.org, Phil Reid , Rob Herring , Jonathan Cameron Subject: Re: [PATCH 12/13] dt-bindings: iio: adc: tlc4541 - recover accidentally dropped binding doc Message-ID: <20200829185753.5d6bef4a@archlinux> In-Reply-To: <20200809111753.156236-13-jic23@kernel.org> References: <20200809111753.156236-1-jic23@kernel.org> <20200809111753.156236-13-jic23@kernel.org> X-Mailer: Claws Mail 3.17.6 (GTK+ 2.24.32; x86_64-pc-linux-gnu) MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: devicetree-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: devicetree@vger.kernel.org On Sun, 9 Aug 2020 12:17:52 +0100 Jonathan Cameron wrote: > From: Phil Reid > > JC: Seems that I messed up applying the original driver patches, and > this file never actually made it into the tree. > > I have picked up original Ack and Sign-off so as to record the > history. > > Acked-by: Rob Herring > Signed-off-by: Phil Reid > Signed-off-by: Jonathan Cameron Applied. > --- > .../devicetree/bindings/iio/adc/ti-tlc4541.txt | 17 +++++++++++++++++ > 1 file changed, 17 insertions(+) > > diff --git a/Documentation/devicetree/bindings/iio/adc/ti-tlc4541.txt b/Documentation/devicetree/bindings/iio/adc/ti-tlc4541.txt > new file mode 100644 > index 000000000000..6b2692723a04 > --- /dev/null > +++ b/Documentation/devicetree/bindings/iio/adc/ti-tlc4541.txt > @@ -0,0 +1,17 @@ > +* Texas Instruments' TLC4541 > + > +Required properties: > + - compatible: Should be one of > + * "ti,tlc4541" > + * "ti,tlc3541" > + - reg: SPI chip select number for the device > + - vref-supply: The regulator supply for ADC reference voltage > + - spi-max-frequency: Max SPI frequency to use (<= 200000) > + > +Example: > +adc@0 { > + compatible = "ti,tlc4541"; > + reg = <0>; > + vref-supply = <&vdd_supply>; > + spi-max-frequency = <200000>; > +};