All of lore.kernel.org
 help / color / mirror / Atom feed
From: Jonathan Cameron <jic23@kernel.org>
To: Linus Walleij <linus.walleij@linaro.org>
Cc: Lee Jones <lee.jones@linaro.org>,
	linux-iio@vger.kernel.org, Hartmut Knaack <knaack.h@gmx.de>,
	Lars-Peter Clausen <lars@metafoo.de>,
	Peter Meerwald-Stadler <pmeerw@pmeerw.net>,
	Mboumba Cedric Madianga <cedric.madianga@gmail.com>
Subject: Re: [PATCH 0/7 v4] AB8500 GPADC MFD to IIO conversion
Date: Thu, 17 Oct 2019 22:27:03 +0100	[thread overview]
Message-ID: <20191017222703.4e213db4@archlinux> (raw)
In-Reply-To: <20191011071805.5554-1-linus.walleij@linaro.org>

On Fri, 11 Oct 2019 09:17:58 +0200
Linus Walleij <linus.walleij@linaro.org> wrote:

> This version should cover Jonathans comments on v2,
> and Rob's comments on missing DT changes in v3 and
> be ripe for early merge for v5.5.
> 
> Jonathan, do you want to queue them in your tree?

For reference immutable branch created at:

Immutable branch created based on 5.4-rc1 at:
https://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git/log/?h=ib-ab8500-5.4-rc1

Now pulled into the togreg branch of iio.git which I'll push out in a moment
as testing for the autobuilders to see if they can managed to build this.

There is the small tweak to the DT examples that will need to be a followup
patch for.  That can go through mfd or myself depending on what Lee would
prefer.

Thanks,

Jonathan

> 
> When Lee applies series like this he usually puts them
> on an isolated immutable branch that he then pulls
> into his own tree and offer to other subsystems.
> It's a good idea I think but maybe you have other
> ways of working.
> 
> Linus Walleij (7):
>   power: supply: ab8500_btemp: convert to IIO ADC
>   power: supply: ab8500_charger: convert to IIO ADC
>   power: supply: ab8500_fg: convert to IIO ADC
>   hwmon: ab8500: convert to IIO ADC
>   mfd: ab8500: augment DT bindings
>   iio: adc: New driver for the AB8500 GPADC
>   mfd: Switch the AB8500 GPADC to IIO
> 
>  .../devicetree/bindings/mfd/ab8500.txt        |  119 ++
>  MAINTAINERS                                   |    1 +
>  drivers/hwmon/Kconfig                         |    3 +-
>  drivers/hwmon/ab8500.c                        |   65 +-
>  drivers/iio/adc/Kconfig                       |   10 +
>  drivers/iio/adc/Makefile                      |    1 +
>  drivers/iio/adc/ab8500-gpadc.c                | 1218 +++++++++++++++++
>  drivers/mfd/Kconfig                           |    7 -
>  drivers/mfd/Makefile                          |    1 -
>  drivers/mfd/ab8500-debugfs.c                  |  715 ----------
>  drivers/mfd/ab8500-gpadc.c                    | 1075 ---------------
>  drivers/power/supply/Kconfig                  |    2 +-
>  drivers/power/supply/ab8500_btemp.c           |   41 +-
>  drivers/power/supply/ab8500_charger.c         |   78 +-
>  drivers/power/supply/ab8500_fg.c              |   23 +-
>  include/linux/mfd/abx500/ab8500-gpadc.h       |   75 -
>  16 files changed, 1495 insertions(+), 1939 deletions(-)
>  create mode 100644 drivers/iio/adc/ab8500-gpadc.c
>  delete mode 100644 drivers/mfd/ab8500-gpadc.c
>  delete mode 100644 include/linux/mfd/abx500/ab8500-gpadc.h
> 


      parent reply	other threads:[~2019-10-17 21:27 UTC|newest]

Thread overview: 17+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-10-11  7:17 [PATCH 0/7 v4] AB8500 GPADC MFD to IIO conversion Linus Walleij
2019-10-11  7:17 ` [PATCH 1/7 v4] power: supply: ab8500_btemp: convert to IIO ADC Linus Walleij
2019-10-11  7:18 ` [PATCH 2/7 v4] power: supply: ab8500_charger: " Linus Walleij
2019-10-11  7:18 ` [PATCH 3/7 v4] power: supply: ab8500_fg: " Linus Walleij
2019-10-11  7:18 ` [PATCH 4/7 v4] hwmon: ab8500: " Linus Walleij
2019-10-11 13:13   ` Guenter Roeck
2019-10-11 20:48     ` Linus Walleij
2019-10-17 21:08       ` Jonathan Cameron
2019-10-11  7:18 ` [PATCH 5/7 v4] mfd: ab8500: augment DT bindings Linus Walleij
2019-10-11 13:44   ` Rob Herring
2019-10-17 21:22     ` Jonathan Cameron
2019-10-18  7:29       ` Lee Jones
2019-10-18  7:48         ` Linus Walleij
2019-10-18 13:24           ` Jonathan Cameron
2019-10-11  7:18 ` [PATCH 6/7 v4] iio: adc: New driver for the AB8500 GPADC Linus Walleij
2019-10-11  7:18 ` [PATCH 7/7 v4] mfd: Switch the AB8500 GPADC to IIO Linus Walleij
2019-10-17 21:27 ` Jonathan Cameron [this message]

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=20191017222703.4e213db4@archlinux \
    --to=jic23@kernel.org \
    --cc=cedric.madianga@gmail.com \
    --cc=knaack.h@gmx.de \
    --cc=lars@metafoo.de \
    --cc=lee.jones@linaro.org \
    --cc=linus.walleij@linaro.org \
    --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.