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=-1.1 required=3.0 tests=DKIM_SIGNED,DKIM_VALID, DKIM_VALID_AU,MAILING_LIST_MULTI,SPF_PASS,T_DKIMWL_WL_HIGH,URIBL_BLOCKED autolearn=ham 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 F17C1C3279B for ; Sat, 30 Jun 2018 17:36:30 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id AC07C254D2 for ; Sat, 30 Jun 2018 17:36:30 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=pass (1024-bit key) header.d=kernel.org header.i=@kernel.org header.b="OrtJJBXr" DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org AC07C254D2 Authentication-Results: mail.kernel.org; dmarc=fail (p=none dis=none) header.from=kernel.org Authentication-Results: mail.kernel.org; spf=none smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751558AbeF3Rg1 (ORCPT ); Sat, 30 Jun 2018 13:36:27 -0400 Received: from mail.kernel.org ([198.145.29.99]:57756 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751283AbeF3RgZ (ORCPT ); Sat, 30 Jun 2018 13:36:25 -0400 Received: from archlinux (cpc91196-cmbg18-2-0-cust659.5-4.cable.virginm.net [81.96.234.148]) (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 D50002255E; Sat, 30 Jun 2018 17:36:21 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1530380185; bh=/SHNv71ygf1JtGODJxo989CX63MHhUQFv9YuFBrZ9s4=; h=Date:From:To:Cc:Subject:In-Reply-To:References:From; b=OrtJJBXro6fFwj436Yw6HI8FKFrqAwYhhg1d/hmG/6Y87KMfvYZKP0fFWd7rGkHR3 RbGFcTKfF6xFn0WZxGm1dVncczH+nr43QYrINSYk7FCB25h75sHP64Ay8ZXcTBgJ58 +MvO2wtbyPlflCvLlRLnF/HSs/1qUTahmyuHt3O4= Date: Sat, 30 Jun 2018 18:36:17 +0100 From: Jonathan Cameron To: Andreas Klinger Cc: knaack.h@gmx.de, lars@metafoo.de, pmeerw@pmeerw.net, robh+dt@kernel.org, mark.rutland@arm.com, mchehab@kernel.org, davem@davemloft.net, gregkh@linuxfoundation.org, akpm@linux-foundation.org, linus.walleij@linaro.org, rdunlap@infradead.org, devicetree@vger.kernel.org, linux-iio@vger.kernel.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH v2 4/4] iio: hx711: warning in dt binding example doc Message-ID: <20180630183617.102dfb84@archlinux> In-Reply-To: <20180625151926.GA6403@arbeit> References: <20180625151926.GA6403@arbeit> X-Mailer: Claws Mail 3.16.0 (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: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Mon, 25 Jun 2018 17:19:26 +0200 Andreas Klinger wrote: > device tree compiler (dtc) gives a warning if a device node has "@" with a > following number as it's name but no reg property. > > fix the example in the documentation of avia,hx711 to conform to dtc > behavior > > Signed-off-by: Andreas Klinger Given there will be fuzz, I'll pick this up when patches 1 and 2 are ready and Acked by a devicetree maintainer. Thanks, Jonathan > --- > Documentation/devicetree/bindings/iio/adc/avia-hx711.txt | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/Documentation/devicetree/bindings/iio/adc/avia-hx711.txt b/Documentation/devicetree/bindings/iio/adc/avia-hx711.txt > index d0c066e3df69..8c9bcaa4d750 100644 > --- a/Documentation/devicetree/bindings/iio/adc/avia-hx711.txt > +++ b/Documentation/devicetree/bindings/iio/adc/avia-hx711.txt > @@ -15,7 +15,7 @@ Optional properties: > is 50000 in the datasheet > > Example: > -weight@0 { > +weight { > compatible = "avia,hx711"; > sck-gpios = <&gpio3 10 GPIO_ACTIVE_HIGH>; > dout-gpios = <&gpio0 7 GPIO_ACTIVE_HIGH>;