All of lore.kernel.org
 help / color / mirror / Atom feed
From: Rob Herring <robh@kernel.org>
To: Akinobu Mita <akinobu.mita@gmail.com>
Cc: linux-iio@vger.kernel.org, devicetree@vger.kernel.org,
	Jonathan Cameron <jic23@kernel.org>,
	Hartmut Knaack <knaack.h@gmx.de>,
	Lars-Peter Clausen <lars@metafoo.de>,
	Peter Meerwald <pmeerw@pmeerw.net>
Subject: Re: [PATCH v2] iio: adc: add support for ADC0831/ADC0832/ADC0834/ADC0838 chips
Date: Mon, 8 Feb 2016 15:23:28 -0600	[thread overview]
Message-ID: <20160208212328.GA1069@rob-hp-laptop> (raw)
In-Reply-To: <1454836456-17033-1-git-send-email-akinobu.mita@gmail.com>

On Sun, Feb 07, 2016 at 06:14:16PM +0900, Akinobu Mita wrote:
> This adds ADC0831/ADC0832/ADC0834/ADC0838 8-bit ADC driver.
> I have tested with ADC0831 and ADC0832.  The remaining ADC0834 and
> ADC0838 are very similar to ADC0832.
> 
> Signed-off-by: Akinobu Mita <akinobu.mita@gmail.com>
> Cc: Jonathan Cameron <jic23@kernel.org>
> Cc: Hartmut Knaack <knaack.h@gmx.de>
> Cc: Lars-Peter Clausen <lars@metafoo.de>
> Cc: Peter Meerwald <pmeerw@pmeerw.net>
> ---
> * v2 (Most changes are suggested by Jonathan Cameron)
> - rename driver name from ti-adc083x to ti-adc0832
> - simplify read_raw() by moving lock
> - fix remove() of driver with correct unwinding
> - enable untested chips (adc0831, adc0834, adc0838)
> - fix adc0831_adc_conversion as a result of testing
> 
>  .../devicetree/bindings/iio/adc/ti-adc0832.txt     |  19 ++

Acked-by: Rob Herring <robh@kernel.org>

>  drivers/iio/adc/Kconfig                            |  10 +
>  drivers/iio/adc/Makefile                           |   1 +
>  drivers/iio/adc/ti-adc0832.c                       | 288 +++++++++++++++++++++
>  4 files changed, 318 insertions(+)
>  create mode 100644 Documentation/devicetree/bindings/iio/adc/ti-adc0832.txt
>  create mode 100644 drivers/iio/adc/ti-adc0832.c
> 

WARNING: multiple messages have this Message-ID (diff)
From: Rob Herring <robh-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org>
To: Akinobu Mita <akinobu.mita-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
Cc: linux-iio-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
	devicetree-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
	Jonathan Cameron <jic23-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org>,
	Hartmut Knaack <knaack.h-Mmb7MZpHnFY@public.gmane.org>,
	Lars-Peter Clausen <lars-Qo5EllUWu/uELgA04lAiVw@public.gmane.org>,
	Peter Meerwald <pmeerw-jW+XmwGofnusTnJN9+BGXg@public.gmane.org>
Subject: Re: [PATCH v2] iio: adc: add support for ADC0831/ADC0832/ADC0834/ADC0838 chips
Date: Mon, 8 Feb 2016 15:23:28 -0600	[thread overview]
Message-ID: <20160208212328.GA1069@rob-hp-laptop> (raw)
In-Reply-To: <1454836456-17033-1-git-send-email-akinobu.mita-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>

On Sun, Feb 07, 2016 at 06:14:16PM +0900, Akinobu Mita wrote:
> This adds ADC0831/ADC0832/ADC0834/ADC0838 8-bit ADC driver.
> I have tested with ADC0831 and ADC0832.  The remaining ADC0834 and
> ADC0838 are very similar to ADC0832.
> 
> Signed-off-by: Akinobu Mita <akinobu.mita-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
> Cc: Jonathan Cameron <jic23-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org>
> Cc: Hartmut Knaack <knaack.h-Mmb7MZpHnFY@public.gmane.org>
> Cc: Lars-Peter Clausen <lars-Qo5EllUWu/uELgA04lAiVw@public.gmane.org>
> Cc: Peter Meerwald <pmeerw-jW+XmwGofnusTnJN9+BGXg@public.gmane.org>
> ---
> * v2 (Most changes are suggested by Jonathan Cameron)
> - rename driver name from ti-adc083x to ti-adc0832
> - simplify read_raw() by moving lock
> - fix remove() of driver with correct unwinding
> - enable untested chips (adc0831, adc0834, adc0838)
> - fix adc0831_adc_conversion as a result of testing
> 
>  .../devicetree/bindings/iio/adc/ti-adc0832.txt     |  19 ++

Acked-by: Rob Herring <robh-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org>

>  drivers/iio/adc/Kconfig                            |  10 +
>  drivers/iio/adc/Makefile                           |   1 +
>  drivers/iio/adc/ti-adc0832.c                       | 288 +++++++++++++++++++++
>  4 files changed, 318 insertions(+)
>  create mode 100644 Documentation/devicetree/bindings/iio/adc/ti-adc0832.txt
>  create mode 100644 drivers/iio/adc/ti-adc0832.c
> 

  reply	other threads:[~2016-02-08 21:23 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-02-07  9:14 [PATCH v2] iio: adc: add support for ADC0831/ADC0832/ADC0834/ADC0838 chips Akinobu Mita
2016-02-07  9:14 ` Akinobu Mita
2016-02-08 21:23 ` Rob Herring [this message]
2016-02-08 21:23   ` Rob Herring
2016-02-09 22:23 ` Jonathan Cameron
2016-02-09 22:23   ` Jonathan Cameron

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20160208212328.GA1069@rob-hp-laptop \
    --to=robh@kernel.org \
    --cc=akinobu.mita@gmail.com \
    --cc=devicetree@vger.kernel.org \
    --cc=jic23@kernel.org \
    --cc=knaack.h@gmx.de \
    --cc=lars@metafoo.de \
    --cc=linux-iio@vger.kernel.org \
    --cc=pmeerw@pmeerw.net \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.