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=-8.6 required=3.0 tests=DKIMWL_WL_HIGH,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,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 B10ABC33C9E for ; Sat, 11 Jan 2020 10:17:31 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 8734E2077C for ; Sat, 11 Jan 2020 10:17:31 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1578737851; bh=cWDB7LJUkZzYeNN+RNZaHLYw/EuP9iPySeFRixVAIjA=; h=Date:From:To:Cc:Subject:In-Reply-To:References:List-ID:From; b=zlUP1JpztnvDDf0rX379f2qYK1KJROIVje/gVxVrTRQAxLEoimWUqmR3meOwmSFQ4 cHEyj+oZEkRW/hClEszBkUzPu26kgCtHDYmXosNr01GqN1Ut4usF0yeqnjKJL8h2dt TQs94Y5m9bimOJ+M3PewQLONjq90644ThWocl2AA= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1730400AbgAKKQs (ORCPT ); Sat, 11 Jan 2020 05:16:48 -0500 Received: from mail.kernel.org ([198.145.29.99]:60336 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1729229AbgAKKQr (ORCPT ); Sat, 11 Jan 2020 05:16:47 -0500 Received: from archlinux (cpc149474-cmbg20-2-0-cust94.5-4.cable.virginm.net [82.4.196.95]) (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 E34AB20673; Sat, 11 Jan 2020 10:16:41 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1578737807; bh=cWDB7LJUkZzYeNN+RNZaHLYw/EuP9iPySeFRixVAIjA=; h=Date:From:To:Cc:Subject:In-Reply-To:References:From; b=0qhrTvJ622zuqqpkVY6pldy0gCLgzoi6fLpEKdLGssA+K+q3Fav7TZlYrzPTGIIBl TVokV2Sr087WkhwqRXpD6MVH1E4QUO9n4BX+xy9AuCHloJLmKQFiIN3G08ewL08zRg Je0b8p1WKEiuZZW1e3Yt6xXOhhTJXUYByXAEcbvI= Date: Sat, 11 Jan 2020 10:16:38 +0000 From: Jonathan Cameron To: Claudiu Beznea Cc: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , Subject: Re: [PATCH v2 06/17] dt-bindings: at91-sama5d2_adc: add microchip,sam9x60-adc Message-ID: <20200111101638.7920f26c@archlinux> In-Reply-To: <1578673089-3484-7-git-send-email-claudiu.beznea@microchip.com> References: <1578673089-3484-1-git-send-email-claudiu.beznea@microchip.com> <1578673089-3484-7-git-send-email-claudiu.beznea@microchip.com> X-Mailer: Claws Mail 3.17.4 (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: dmaengine-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: dmaengine@vger.kernel.org On Fri, 10 Jan 2020 18:17:58 +0200 Claudiu Beznea wrote: > Add microchip,sam9x60-adc to DT bindings documentation. > > Signed-off-by: Claudiu Beznea Acked-by: Jonathan Cameron I'm assuming this lot of binding changes will all go via Rob. Let me know if you are expecting it to go via the various individual trees. Thanks, Jonathan > --- > Documentation/devicetree/bindings/iio/adc/at91-sama5d2_adc.txt | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/Documentation/devicetree/bindings/iio/adc/at91-sama5d2_adc.txt b/Documentation/devicetree/bindings/iio/adc/at91-sama5d2_adc.txt > index 4a3c1d496e1a..07c59f301b31 100644 > --- a/Documentation/devicetree/bindings/iio/adc/at91-sama5d2_adc.txt > +++ b/Documentation/devicetree/bindings/iio/adc/at91-sama5d2_adc.txt > @@ -1,7 +1,7 @@ > * AT91 SAMA5D2 Analog to Digital Converter (ADC) > > Required properties: > - - compatible: Should be "atmel,sama5d2-adc". > + - compatible: Should be "atmel,sama5d2-adc" or "microchip,sam9x60-adc". > - reg: Should contain ADC registers location and length. > - interrupts: Should contain the IRQ line for the ADC. > - clocks: phandle to device clock. From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jonathan Cameron Subject: Re: [PATCH v2 06/17] dt-bindings: at91-sama5d2_adc: add microchip,sam9x60-adc Date: Sat, 11 Jan 2020 10:16:38 +0000 Message-ID: <20200111101638.7920f26c@archlinux> References: <1578673089-3484-1-git-send-email-claudiu.beznea@microchip.com> <1578673089-3484-7-git-send-email-claudiu.beznea@microchip.com> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Return-path: In-Reply-To: <1578673089-3484-7-git-send-email-claudiu.beznea@microchip.com> Sender: linux-media-owner@vger.kernel.org To: Claudiu Beznea Cc: robh+dt@kernel.org, mark.rutland@arm.com, nicolas.ferre@microchip.com, alexandre.belloni@bootlin.com, ludovic.desroches@microchip.com, vkoul@kernel.org, eugen.hristev@microchip.com, knaack.h@gmx.de, lars@metafoo.de, pmeerw@pmeerw.net, mchehab@kernel.org, lee.jones@linaro.org, radu_nicolae.pirea@upb.ro, richard.genoud@gmail.com, tudor.ambarus@microchip.com, miquel.raynal@bootlin.com, richard@nod.at, vigneshr@ti.com, wg@grandegger.com, mkl@pengutronix.de, a.zummo@towertech.it, devicetree@vger.kernel.org, linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org, dmaengine@vger.kernel.org, linux-iio@vger.kernel.org, linux-media@vger.kernel.org, linux-spi@vger.kernel.org, linux-mtd@lists.infradead.org, linux-ca List-Id: linux-can.vger.kernel.org On Fri, 10 Jan 2020 18:17:58 +0200 Claudiu Beznea wrote: > Add microchip,sam9x60-adc to DT bindings documentation. > > Signed-off-by: Claudiu Beznea Acked-by: Jonathan Cameron I'm assuming this lot of binding changes will all go via Rob. Let me know if you are expecting it to go via the various individual trees. Thanks, Jonathan > --- > Documentation/devicetree/bindings/iio/adc/at91-sama5d2_adc.txt | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/Documentation/devicetree/bindings/iio/adc/at91-sama5d2_adc.txt b/Documentation/devicetree/bindings/iio/adc/at91-sama5d2_adc.txt > index 4a3c1d496e1a..07c59f301b31 100644 > --- a/Documentation/devicetree/bindings/iio/adc/at91-sama5d2_adc.txt > +++ b/Documentation/devicetree/bindings/iio/adc/at91-sama5d2_adc.txt > @@ -1,7 +1,7 @@ > * AT91 SAMA5D2 Analog to Digital Converter (ADC) > > Required properties: > - - compatible: Should be "atmel,sama5d2-adc". > + - compatible: Should be "atmel,sama5d2-adc" or "microchip,sam9x60-adc". > - reg: Should contain ADC registers location and length. > - interrupts: Should contain the IRQ line for the ADC. > - clocks: phandle to device clock. 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=-8.5 required=3.0 tests=DKIMWL_WL_HIGH,DKIM_SIGNED, DKIM_VALID,INCLUDES_PATCH,MAILING_LIST_MULTI,SIGNED_OFF_BY,SPF_HELO_NONE, SPF_PASS,USER_AGENT_SANE_2 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 BC228C3F68F for ; Sat, 11 Jan 2020 10:17:13 +0000 (UTC) Received: from bombadil.infradead.org (bombadil.infradead.org [198.137.202.133]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id 9068C2082E for ; Sat, 11 Jan 2020 10:17:13 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=pass (2048-bit key) header.d=lists.infradead.org header.i=@lists.infradead.org header.b="Kns6d7ZK"; dkim=fail reason="signature verification failed" (1024-bit key) header.d=kernel.org header.i=@kernel.org header.b="0qhrTvJ6" DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 9068C2082E 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-mtd-bounces+linux-mtd=archiver.kernel.org@lists.infradead.org DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lists.infradead.org; s=bombadil.20170209; h=Sender: Content-Transfer-Encoding:Content-Type:Cc:List-Subscribe:List-Help:List-Post: List-Archive:List-Unsubscribe:List-Id:MIME-Version:References:In-Reply-To: Message-ID:Subject:To:From:Date:Reply-To:Content-ID:Content-Description: Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID: List-Owner; bh=TroO0bnTAxNMh3vWfos6WLUVHYP2kSBtVBMq/8CmXZI=; b=Kns6d7ZK89XsjA bhIkfOR0Eq9/xGsw5vFvb1rxCRFrhcF3kn3PDloeXw/a5/VWmL618PFzAGaoRlZHWk6j3ELO7FXBO nb4Foc6gFjGv/NoiNysF78q0KwIQuBVREx5VcNYDtBPKGnxw6hQUYGMLOWJr0WGyecxw+WnOImAgG dnxbBDwk+KaZjzHiezyybeXyXQ9GoO/zLCjikKW/GbUor3FAgo/3XKrbCAiNbvw6Ac1y5jB9QCB+S 6uUsDblfB/1Fa+WcjYG24qtaDPnBBI7rW9IDHYByjdrknx4Gs1OAm6FSr1t4kkAl8bcT4H3a6iAYf jWosuMw8o/NDyYlHQBHw==; Received: from localhost ([127.0.0.1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.92.3 #3 (Red Hat Linux)) id 1iqDpA-0003Ya-DA; Sat, 11 Jan 2020 10:16:56 +0000 Received: from mail.kernel.org ([198.145.29.99]) by bombadil.infradead.org with esmtps (Exim 4.92.3 #3 (Red Hat Linux)) id 1iqDp1-0003SH-NP; Sat, 11 Jan 2020 10:16:48 +0000 Received: from archlinux (cpc149474-cmbg20-2-0-cust94.5-4.cable.virginm.net [82.4.196.95]) (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 E34AB20673; Sat, 11 Jan 2020 10:16:41 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1578737807; bh=cWDB7LJUkZzYeNN+RNZaHLYw/EuP9iPySeFRixVAIjA=; h=Date:From:To:Cc:Subject:In-Reply-To:References:From; b=0qhrTvJ622zuqqpkVY6pldy0gCLgzoi6fLpEKdLGssA+K+q3Fav7TZlYrzPTGIIBl TVokV2Sr087WkhwqRXpD6MVH1E4QUO9n4BX+xy9AuCHloJLmKQFiIN3G08ewL08zRg Je0b8p1WKEiuZZW1e3Yt6xXOhhTJXUYByXAEcbvI= Date: Sat, 11 Jan 2020 10:16:38 +0000 From: Jonathan Cameron To: Claudiu Beznea Subject: Re: [PATCH v2 06/17] dt-bindings: at91-sama5d2_adc: add microchip,sam9x60-adc Message-ID: <20200111101638.7920f26c@archlinux> In-Reply-To: <1578673089-3484-7-git-send-email-claudiu.beznea@microchip.com> References: <1578673089-3484-1-git-send-email-claudiu.beznea@microchip.com> <1578673089-3484-7-git-send-email-claudiu.beznea@microchip.com> X-Mailer: Claws Mail 3.17.4 (GTK+ 2.24.32; x86_64-pc-linux-gnu) MIME-Version: 1.0 X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20200111_021647_788759_4022E0B2 X-CRM114-Status: GOOD ( 12.48 ) X-BeenThere: linux-mtd@lists.infradead.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Linux MTD discussion mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: mark.rutland@arm.com, alexandre.belloni@bootlin.com, vigneshr@ti.com, linux-iio@vger.kernel.org, linux-kernel@vger.kernel.org, linux-mtd@lists.infradead.org, pmeerw@pmeerw.net, miquel.raynal@bootlin.com, lee.jones@linaro.org, linux-rtc@vger.kernel.org, lars@metafoo.de, richard@nod.at, ludovic.desroches@microchip.com, wg@grandegger.com, linux-media@vger.kernel.org, devicetree@vger.kernel.org, tudor.ambarus@microchip.com, radu_nicolae.pirea@upb.ro, linux-can@vger.kernel.org, robh+dt@kernel.org, mkl@pengutronix.de, mchehab@kernel.org, linux-arm-kernel@lists.infradead.org, a.zummo@towertech.it, richard.genoud@gmail.com, nicolas.ferre@microchip.com, linux-spi@vger.kernel.org, vkoul@kernel.org, knaack.h@gmx.de, dmaengine@vger.kernel.org, eugen.hristev@microchip.com Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Sender: "linux-mtd" Errors-To: linux-mtd-bounces+linux-mtd=archiver.kernel.org@lists.infradead.org On Fri, 10 Jan 2020 18:17:58 +0200 Claudiu Beznea wrote: > Add microchip,sam9x60-adc to DT bindings documentation. > > Signed-off-by: Claudiu Beznea Acked-by: Jonathan Cameron I'm assuming this lot of binding changes will all go via Rob. Let me know if you are expecting it to go via the various individual trees. Thanks, Jonathan > --- > Documentation/devicetree/bindings/iio/adc/at91-sama5d2_adc.txt | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/Documentation/devicetree/bindings/iio/adc/at91-sama5d2_adc.txt b/Documentation/devicetree/bindings/iio/adc/at91-sama5d2_adc.txt > index 4a3c1d496e1a..07c59f301b31 100644 > --- a/Documentation/devicetree/bindings/iio/adc/at91-sama5d2_adc.txt > +++ b/Documentation/devicetree/bindings/iio/adc/at91-sama5d2_adc.txt > @@ -1,7 +1,7 @@ > * AT91 SAMA5D2 Analog to Digital Converter (ADC) > > Required properties: > - - compatible: Should be "atmel,sama5d2-adc". > + - compatible: Should be "atmel,sama5d2-adc" or "microchip,sam9x60-adc". > - reg: Should contain ADC registers location and length. > - interrupts: Should contain the IRQ line for the ADC. > - clocks: phandle to device clock. ______________________________________________________ Linux MTD discussion mailing list http://lists.infradead.org/mailman/listinfo/linux-mtd/ From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jonathan Cameron Subject: Re: [PATCH v2 06/17] dt-bindings: at91-sama5d2_adc: add microchip,sam9x60-adc Date: Sat, 11 Jan 2020 10:16:38 +0000 Message-ID: <20200111101638.7920f26c@archlinux> References: <1578673089-3484-1-git-send-email-claudiu.beznea@microchip.com> <1578673089-3484-7-git-send-email-claudiu.beznea@microchip.com> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , Return-path: In-Reply-To: <1578673089-3484-7-git-send-email-claudiu.beznea@microchip.com> Sender: linux-media-owner@vger.kernel.org List-Id: linux-spi.vger.kernel.org On Fri, 10 Jan 2020 18:17:58 +0200 Claudiu Beznea wrote: > Add microchip,sam9x60-adc to DT bindings documentation. > > Signed-off-by: Claudiu Beznea Acked-by: Jonathan Cameron I'm assuming this lot of binding changes will all go via Rob. Let me know if you are expecting it to go via the various individual trees. Thanks, Jonathan > --- > Documentation/devicetree/bindings/iio/adc/at91-sama5d2_adc.txt | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/Documentation/devicetree/bindings/iio/adc/at91-sama5d2_adc.txt b/Documentation/devicetree/bindings/iio/adc/at91-sama5d2_adc.txt > index 4a3c1d496e1a..07c59f301b31 100644 > --- a/Documentation/devicetree/bindings/iio/adc/at91-sama5d2_adc.txt > +++ b/Documentation/devicetree/bindings/iio/adc/at91-sama5d2_adc.txt > @@ -1,7 +1,7 @@ > * AT91 SAMA5D2 Analog to Digital Converter (ADC) > > Required properties: > - - compatible: Should be "atmel,sama5d2-adc". > + - compatible: Should be "atmel,sama5d2-adc" or "microchip,sam9x60-adc". > - reg: Should contain ADC registers location and length. > - interrupts: Should contain the IRQ line for the ADC. > - clocks: phandle to device clock. 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=-8.5 required=3.0 tests=DKIMWL_WL_HIGH,DKIM_SIGNED, DKIM_VALID,INCLUDES_PATCH,MAILING_LIST_MULTI,SIGNED_OFF_BY,SPF_HELO_NONE, SPF_PASS,USER_AGENT_SANE_2 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 0660AC33C9E for ; Sat, 11 Jan 2020 10:17:11 +0000 (UTC) Received: from bombadil.infradead.org (bombadil.infradead.org [198.137.202.133]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id CD4E020848 for ; Sat, 11 Jan 2020 10:17:10 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=pass (2048-bit key) header.d=lists.infradead.org header.i=@lists.infradead.org header.b="kTS7It9H"; dkim=fail reason="signature verification failed" (1024-bit key) header.d=kernel.org header.i=@kernel.org header.b="0qhrTvJ6" DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org CD4E020848 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-arm-kernel-bounces+infradead-linux-arm-kernel=archiver.kernel.org@lists.infradead.org DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lists.infradead.org; s=bombadil.20170209; h=Sender: Content-Transfer-Encoding:Content-Type:Cc:List-Subscribe:List-Help:List-Post: List-Archive:List-Unsubscribe:List-Id:MIME-Version:References:In-Reply-To: Message-ID:Subject:To:From:Date:Reply-To:Content-ID:Content-Description: Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID: List-Owner; bh=xDIkOneXLsL/5LcOrSwOb7n7R/qBks4g8JwcTEnv3K8=; b=kTS7It9HAYeIBQ 0IDVNuxASGdShqQ6o2JbSaYaZKGrYDW8c03dIwv7sa5nFx/xBQWFZNcUwaVjBijjP2Gob9oMop78h izIAW1vwgS/8UwIB1ZyWfusE4PZB8PZ6oSmeTbl4TqWlgxNHbc8JxQASwSIPrL6MK7k1MFJm039/O M+/iYLxlKRX/QMt8NWSAb+JcvehswWNOOWNY0xgLTJPJEeHO7AZyhbovspIxk7jVGtkO0jYiLZual o3WU6ljzmmOgAChXKt+KXn4fK/DjS7LD5VPWd05lZjlk2e3Cfx32elmYzkcSfaj6MqS6/x/9WtdLE zikQIimVYZeKdT/NreOw==; Received: from localhost ([127.0.0.1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.92.3 #3 (Red Hat Linux)) id 1iqDp6-0003T9-54; Sat, 11 Jan 2020 10:16:52 +0000 Received: from mail.kernel.org ([198.145.29.99]) by bombadil.infradead.org with esmtps (Exim 4.92.3 #3 (Red Hat Linux)) id 1iqDp1-0003SH-NP; Sat, 11 Jan 2020 10:16:48 +0000 Received: from archlinux (cpc149474-cmbg20-2-0-cust94.5-4.cable.virginm.net [82.4.196.95]) (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 E34AB20673; Sat, 11 Jan 2020 10:16:41 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1578737807; bh=cWDB7LJUkZzYeNN+RNZaHLYw/EuP9iPySeFRixVAIjA=; h=Date:From:To:Cc:Subject:In-Reply-To:References:From; b=0qhrTvJ622zuqqpkVY6pldy0gCLgzoi6fLpEKdLGssA+K+q3Fav7TZlYrzPTGIIBl TVokV2Sr087WkhwqRXpD6MVH1E4QUO9n4BX+xy9AuCHloJLmKQFiIN3G08ewL08zRg Je0b8p1WKEiuZZW1e3Yt6xXOhhTJXUYByXAEcbvI= Date: Sat, 11 Jan 2020 10:16:38 +0000 From: Jonathan Cameron To: Claudiu Beznea Subject: Re: [PATCH v2 06/17] dt-bindings: at91-sama5d2_adc: add microchip,sam9x60-adc Message-ID: <20200111101638.7920f26c@archlinux> In-Reply-To: <1578673089-3484-7-git-send-email-claudiu.beznea@microchip.com> References: <1578673089-3484-1-git-send-email-claudiu.beznea@microchip.com> <1578673089-3484-7-git-send-email-claudiu.beznea@microchip.com> X-Mailer: Claws Mail 3.17.4 (GTK+ 2.24.32; x86_64-pc-linux-gnu) MIME-Version: 1.0 X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20200111_021647_788759_4022E0B2 X-CRM114-Status: GOOD ( 12.48 ) X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: mark.rutland@arm.com, alexandre.belloni@bootlin.com, vigneshr@ti.com, linux-iio@vger.kernel.org, linux-kernel@vger.kernel.org, linux-mtd@lists.infradead.org, pmeerw@pmeerw.net, miquel.raynal@bootlin.com, lee.jones@linaro.org, linux-rtc@vger.kernel.org, lars@metafoo.de, richard@nod.at, ludovic.desroches@microchip.com, wg@grandegger.com, linux-media@vger.kernel.org, devicetree@vger.kernel.org, tudor.ambarus@microchip.com, radu_nicolae.pirea@upb.ro, linux-can@vger.kernel.org, robh+dt@kernel.org, mkl@pengutronix.de, mchehab@kernel.org, linux-arm-kernel@lists.infradead.org, a.zummo@towertech.it, richard.genoud@gmail.com, linux-spi@vger.kernel.org, vkoul@kernel.org, knaack.h@gmx.de, dmaengine@vger.kernel.org, eugen.hristev@microchip.com Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+infradead-linux-arm-kernel=archiver.kernel.org@lists.infradead.org On Fri, 10 Jan 2020 18:17:58 +0200 Claudiu Beznea wrote: > Add microchip,sam9x60-adc to DT bindings documentation. > > Signed-off-by: Claudiu Beznea Acked-by: Jonathan Cameron I'm assuming this lot of binding changes will all go via Rob. Let me know if you are expecting it to go via the various individual trees. Thanks, Jonathan > --- > Documentation/devicetree/bindings/iio/adc/at91-sama5d2_adc.txt | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/Documentation/devicetree/bindings/iio/adc/at91-sama5d2_adc.txt b/Documentation/devicetree/bindings/iio/adc/at91-sama5d2_adc.txt > index 4a3c1d496e1a..07c59f301b31 100644 > --- a/Documentation/devicetree/bindings/iio/adc/at91-sama5d2_adc.txt > +++ b/Documentation/devicetree/bindings/iio/adc/at91-sama5d2_adc.txt > @@ -1,7 +1,7 @@ > * AT91 SAMA5D2 Analog to Digital Converter (ADC) > > Required properties: > - - compatible: Should be "atmel,sama5d2-adc". > + - compatible: Should be "atmel,sama5d2-adc" or "microchip,sam9x60-adc". > - reg: Should contain ADC registers location and length. > - interrupts: Should contain the IRQ line for the ADC. > - clocks: phandle to device clock. _______________________________________________ linux-arm-kernel mailing list linux-arm-kernel@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-arm-kernel