From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail.kernel.org ([198.145.29.99]:59402 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750794AbeC3JvC (ORCPT ); Fri, 30 Mar 2018 05:51:02 -0400 Date: Fri, 30 Mar 2018 10:50:55 +0100 From: Jonathan Cameron To: Yixun Lan Cc: Hartmut Knaack , Lars-Peter Clausen , Peter Meerwald-Stadler , Xingyu Chen , Martin Blumenstingl , Heiner Kallweit , Rob Herring , Neil Armstrong , Jerome Brunet , Kevin Hilman , Carlo Caione , , , , Subject: Re: [PATCH 3/3] iio: adc: meson-axg: add saradc driver Message-ID: <20180330105055.3b0259d6@archlinux> In-Reply-To: <20180326084629.100070-4-yixun.lan@amlogic.com> References: <20180326084629.100070-1-yixun.lan@amlogic.com> <20180326084629.100070-4-yixun.lan@amlogic.com> MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Sender: linux-iio-owner@vger.kernel.org List-Id: linux-iio@vger.kernel.org On Mon, 26 Mar 2018 16:46:29 +0800 Yixun Lan wrote: > From: Xingyu Chen > > Add the SAR ADC driver for the Amlogic Meson-AXG SoC. > > Signed-off-by: Xingyu Chen Applied to the togreg branch of iio.git and pushed out as testing for the autobuilders to play with it. Thanks, Jonathan > --- > drivers/iio/adc/meson_saradc.c | 8 ++++++++ > 1 file changed, 8 insertions(+) > > diff --git a/drivers/iio/adc/meson_saradc.c b/drivers/iio/adc/meson_saradc.c > index 799ed929ab99..a5d481a2b4ef 100644 > --- a/drivers/iio/adc/meson_saradc.c > +++ b/drivers/iio/adc/meson_saradc.c > @@ -935,6 +935,11 @@ static const struct meson_sar_adc_data meson_sar_adc_gxm_data = { > .name = "meson-gxm-saradc", > }; > > +static const struct meson_sar_adc_data meson_sar_adc_axg_data = { > + .param = &meson_sar_adc_gxl_param, > + .name = "meson-axg-saradc", > +}; > + > static const struct of_device_id meson_sar_adc_of_match[] = { > { > .compatible = "amlogic,meson8-saradc", > @@ -953,6 +958,9 @@ static const struct of_device_id meson_sar_adc_of_match[] = { > }, { > .compatible = "amlogic,meson-gxm-saradc", > .data = &meson_sar_adc_gxm_data, > + }, { > + .compatible = "amlogic,meson-axg-saradc", > + .data = &meson_sar_adc_axg_data, > }, > {}, > };