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=-5.6 required=3.0 tests=BAYES_00,DKIMWL_WL_HIGH, DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,MAILING_LIST_MULTI,SPF_HELO_NONE, SPF_PASS,URIBL_BLOCKED,USER_AGENT_SANE_2 autolearn=no 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 40D41C5519F for ; Sat, 14 Nov 2020 17:17:16 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id EB529217A0 for ; Sat, 14 Nov 2020 17:17:15 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=pass (1024-bit key) header.d=kernel.org header.i=@kernel.org header.b="ZSfJDB4i" Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726227AbgKNRRP (ORCPT ); Sat, 14 Nov 2020 12:17:15 -0500 Received: from mail.kernel.org ([198.145.29.99]:37596 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726070AbgKNRRP (ORCPT ); Sat, 14 Nov 2020 12:17:15 -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 1D30D20B80; Sat, 14 Nov 2020 17:17:12 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1605374234; bh=9fXdm0/jlVB/JoIYN6WFDDi7fbDGGhlQON/dw5QBnKY=; h=Date:From:To:Cc:Subject:In-Reply-To:References:From; b=ZSfJDB4i5mQGxl3rc2sTDIThpu6ID/aJ0O/Y/hXif9bxyul8vQC+kth9ly0cBOtI1 nRWQDBwGrL/jtY9JQ5i93bN/AMG5sWSBsawq2l+F78pxNZ5+0st/sB6jqZcdzDSBZM L1PFI3Ns8lR6JRv+f/DcDQTOcwUGGeAOtBdyBdlw= Date: Sat, 14 Nov 2020 17:17:09 +0000 From: Jonathan Cameron To: Alexandre Belloni Cc: Lars-Peter Clausen , Peter Meerwald-Stadler , Nicolas Ferre , Ludovic Desroches , linux-iio@vger.kernel.org, devicetree@vger.kernel.org, linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH 0/9] iio: adc: at91_adc: cleanup DT bindings Message-ID: <20201114171709.638e8200@archlinux> In-Reply-To: <20201113212650.507680-1-alexandre.belloni@bootlin.com> References: <20201113212650.507680-1-alexandre.belloni@bootlin.com> X-Mailer: Claws Mail 3.17.7 (GTK+ 2.24.32; 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: linux-kernel@vger.kernel.org On Fri, 13 Nov 2020 22:26:41 +0100 Alexandre Belloni wrote: > Hello, > > This series cleans up the at91_adc devicetree bindings. This mainly > moves back the resolution options and names and the triggers description > back in the driver. > > There are also other cleanups, like removing platform data support, this > was pending for a while. I'm fine with everything up to patch 7. Given it touches DT I'll leave a bit of time for Rob to take a quick look (can't see him objecting to the removal of sections of the binding though!) If you don't mind me dropping 7 I can pick 1-6 up in a week or two. Thanks, Jonathan > > Alexandre Belloni (8): > iio: adc: at91_adc: remove platform data > iio: adc: at91_adc: rework resolution selection > iio: adc: at91_adc: rework trigger definition > iio: adc: at91_adc: merge at91_adc_probe_dt back in at91_adc_probe > iio: adc: at91_adc: remove forward declaration > iio: adc: at91_adc: use devm_input_allocate_device > ARM: dts: at91: sama5d3: use proper ADC compatible > ARM: dts: at91: remove deprecated ADC properties > > Jonathan Cameron (1): > dt-bindings:iio:adc:atmel,sama9260-adc: conversion to yaml from > at91_adc.txt > > .../devicetree/bindings/iio/adc/at91_adc.txt | 83 ---- > .../bindings/iio/adc/atmel,sama9260-adc.yaml | 121 ++++++ > arch/arm/boot/dts/at91sam9260.dtsi | 25 -- > arch/arm/boot/dts/at91sam9g45.dtsi | 27 -- > arch/arm/boot/dts/at91sam9rl.dtsi | 25 -- > arch/arm/boot/dts/at91sam9x5.dtsi | 28 -- > arch/arm/boot/dts/sama5d3.dtsi | 26 +- > arch/arm/boot/dts/sama5d4.dtsi | 22 - > drivers/iio/adc/at91_adc.c | 377 +++++++----------- > include/linux/platform_data/at91_adc.h | 49 --- > 10 files changed, 259 insertions(+), 524 deletions(-) > delete mode 100644 Documentation/devicetree/bindings/iio/adc/at91_adc.txt > create mode 100644 Documentation/devicetree/bindings/iio/adc/atmel,sama9260-adc.yaml > delete mode 100644 include/linux/platform_data/at91_adc.h > 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=-5.5 required=3.0 tests=BAYES_00,DKIMWL_WL_HIGH, DKIM_SIGNED,DKIM_VALID,MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS, URIBL_BLOCKED,USER_AGENT_SANE_2 autolearn=no 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 508E1C5519F for ; Sat, 14 Nov 2020 17:17:44 +0000 (UTC) Received: from merlin.infradead.org (merlin.infradead.org [205.233.59.134]) (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 01A632137B for ; Sat, 14 Nov 2020 17:17:43 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=pass (2048-bit key) header.d=lists.infradead.org header.i=@lists.infradead.org header.b="D0UuUJNx"; dkim=fail reason="signature verification failed" (1024-bit key) header.d=kernel.org header.i=@kernel.org header.b="ZSfJDB4i" DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 01A632137B 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+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=merlin.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=jBQhmGLjYNBC2wkePXuoR60hgPGObbiDmhnFRT7mxEw=; b=D0UuUJNxESqXhkLFakAnoKEh9 4K64t3uvVQkrQbzmjMFh0ZVZL5PWhSC+VAiU+Gk2BhECCzSYvgMTpirmIH9ryAZjBa7s+63lTIdZQ 9YFTVKCy1hBfYRMJMuDeg95K0WDvObqIbOHch/U8uPX5NmqXwSU54jrCi6RaYW1JMNNpfATroaFbn s1GH51K0v+1a4NrDM10k95iQMaKO4vGbo0iJb3S3TJJbxkbqEQBcZxZxcNPSfpJhDkIRGylINTxag 5v6ZPq2hz4qTNcDriqmRYX2wMCfIefmNxvrqBJM0QjUwcNnidFwfcT8i15cnnnd/eQuZ3/EfXYmCP 5qHs5O9cA==; Received: from localhost ([::1] helo=merlin.infradead.org) by merlin.infradead.org with esmtp (Exim 4.92.3 #3 (Red Hat Linux)) id 1kdzAs-0005yT-3y; Sat, 14 Nov 2020 17:17:18 +0000 Received: from mail.kernel.org ([198.145.29.99]) by merlin.infradead.org with esmtps (Exim 4.92.3 #3 (Red Hat Linux)) id 1kdzAp-0005y0-GO for linux-arm-kernel@lists.infradead.org; Sat, 14 Nov 2020 17:17:16 +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 1D30D20B80; Sat, 14 Nov 2020 17:17:12 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1605374234; bh=9fXdm0/jlVB/JoIYN6WFDDi7fbDGGhlQON/dw5QBnKY=; h=Date:From:To:Cc:Subject:In-Reply-To:References:From; b=ZSfJDB4i5mQGxl3rc2sTDIThpu6ID/aJ0O/Y/hXif9bxyul8vQC+kth9ly0cBOtI1 nRWQDBwGrL/jtY9JQ5i93bN/AMG5sWSBsawq2l+F78pxNZ5+0st/sB6jqZcdzDSBZM L1PFI3Ns8lR6JRv+f/DcDQTOcwUGGeAOtBdyBdlw= Date: Sat, 14 Nov 2020 17:17:09 +0000 From: Jonathan Cameron To: Alexandre Belloni Subject: Re: [PATCH 0/9] iio: adc: at91_adc: cleanup DT bindings Message-ID: <20201114171709.638e8200@archlinux> In-Reply-To: <20201113212650.507680-1-alexandre.belloni@bootlin.com> References: <20201113212650.507680-1-alexandre.belloni@bootlin.com> X-Mailer: Claws Mail 3.17.7 (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-20201114_121715_618224_7FC61B0D X-CRM114-Status: GOOD ( 17.87 ) 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: devicetree@vger.kernel.org, Lars-Peter Clausen , linux-iio@vger.kernel.org, linux-kernel@vger.kernel.org, Ludovic Desroches , Peter Meerwald-Stadler , linux-arm-kernel@lists.infradead.org Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+linux-arm-kernel=archiver.kernel.org@lists.infradead.org On Fri, 13 Nov 2020 22:26:41 +0100 Alexandre Belloni wrote: > Hello, > > This series cleans up the at91_adc devicetree bindings. This mainly > moves back the resolution options and names and the triggers description > back in the driver. > > There are also other cleanups, like removing platform data support, this > was pending for a while. I'm fine with everything up to patch 7. Given it touches DT I'll leave a bit of time for Rob to take a quick look (can't see him objecting to the removal of sections of the binding though!) If you don't mind me dropping 7 I can pick 1-6 up in a week or two. Thanks, Jonathan > > Alexandre Belloni (8): > iio: adc: at91_adc: remove platform data > iio: adc: at91_adc: rework resolution selection > iio: adc: at91_adc: rework trigger definition > iio: adc: at91_adc: merge at91_adc_probe_dt back in at91_adc_probe > iio: adc: at91_adc: remove forward declaration > iio: adc: at91_adc: use devm_input_allocate_device > ARM: dts: at91: sama5d3: use proper ADC compatible > ARM: dts: at91: remove deprecated ADC properties > > Jonathan Cameron (1): > dt-bindings:iio:adc:atmel,sama9260-adc: conversion to yaml from > at91_adc.txt > > .../devicetree/bindings/iio/adc/at91_adc.txt | 83 ---- > .../bindings/iio/adc/atmel,sama9260-adc.yaml | 121 ++++++ > arch/arm/boot/dts/at91sam9260.dtsi | 25 -- > arch/arm/boot/dts/at91sam9g45.dtsi | 27 -- > arch/arm/boot/dts/at91sam9rl.dtsi | 25 -- > arch/arm/boot/dts/at91sam9x5.dtsi | 28 -- > arch/arm/boot/dts/sama5d3.dtsi | 26 +- > arch/arm/boot/dts/sama5d4.dtsi | 22 - > drivers/iio/adc/at91_adc.c | 377 +++++++----------- > include/linux/platform_data/at91_adc.h | 49 --- > 10 files changed, 259 insertions(+), 524 deletions(-) > delete mode 100644 Documentation/devicetree/bindings/iio/adc/at91_adc.txt > create mode 100644 Documentation/devicetree/bindings/iio/adc/atmel,sama9260-adc.yaml > delete mode 100644 include/linux/platform_data/at91_adc.h > _______________________________________________ linux-arm-kernel mailing list linux-arm-kernel@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-arm-kernel