mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [GIT PULL] regulator updates for v4.17
@ 2018-04-02 16:34 Mark Brown
  2018-04-03 19:00 ` Linus Torvalds
  0 siblings, 1 reply; 3+ messages in thread
From: Mark Brown @ 2018-04-02 16:34 UTC (permalink / raw)
  To: Linus Torvalds; +Cc: linux-kernel, Liam Girdwood

[-- Attachment #1: Type: text/plain, Size: 3663 bytes --]

The following changes since commit 3eb2ce825ea1ad89d20f7a3b5780df850e4be274:

  Linux 4.16-rc7 (2018-03-25 12:44:30 -1000)

are available in the Git repository at:

  https://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git tags/regulator-v4.17

for you to fetch changes up to 36fd679f45a25a7c634b3dbec35a2d7fdb832a65:

  Merge remote-tracking branches 'regulator/topic/88pg86x', 'regulator/topic/dt', 'regulator/topic/formatting' and 'regulator/topic/gpio' into regulator-next (2018-03-28 10:33:53 +0800)

----------------------------------------------------------------
regulator: Updates for v4.17

A very small set of updates for the regulator API this time around,
there's a few bug fixes and also:

 - Conversion of the regulator API to use GPIO descriptors rather than
   numbers from Linus Walleij.
 - New drivers for Marvell 88PG86x and Qualcomm PM8998 and PMI8998.

----------------------------------------------------------------
Alexander Monakov (2):
      regulator: 88pg86x: add DT bindings document
      regulator: 88pg86x: new i2c dual regulator chip

Bjorn Andersson (1):
      regulator: qcom: smd: Add pm8998 and pmi8998 regulators

Christophe JAILLET (1):
      regulator: of: Add a missing 'of_node_put()' in an error handling path of 'of_regulator_match()'

Christophe Jaillet (1):
      regulator: gpio: Fix some error handling paths in 'gpio_regulator_probe()'

Harald Geyer (1):
      regulator: dt: regulator-name is required property

Linus Walleij (3):
      regulator: core: Support passing an initialized GPIO enable descriptor
      regulator: da9055: Pass descriptor instead of GPIO number
      regulator: da9211: Pass descriptors instead of GPIO numbers

Mark Brown (5):
      regulator: core: Add missing blank line between functions
      Merge remote-tracking branch 'regulator/topic/core' into regulator-next
      Merge remote-tracking branch 'regulator/topic/qcom' into regulator-next
      Merge remote-tracking branch 'regulator/topic/qcom_smd' into regulator-next
      Merge remote-tracking branches 'regulator/topic/88pg86x', 'regulator/topic/dt', 'regulator/topic/formatting' and 'regulator/topic/gpio' into regulator-next

Nicholas Lowell (1):
      regulator: giving regulator controlling gpios a non-empty label when used through the devicetree.

Stephen Boyd (1):
      regulator: qcom_smd: Drop regulator/{machine,of_regulator} includes

 .../devicetree/bindings/regulator/88pg86x.txt      |  22 ++++
 .../bindings/regulator/fixed-regulator.txt         |   1 +
 .../bindings/regulator/gpio-regulator.txt          |   2 +
 .../bindings/regulator/qcom,smd-rpm-regulator.txt  |  48 ++++++++
 drivers/regulator/88pg86x.c                        | 114 +++++++++++++++++++
 drivers/regulator/Kconfig                          |   9 ++
 drivers/regulator/Makefile                         |   1 +
 drivers/regulator/core.c                           |  26 +++--
 drivers/regulator/da9055-regulator.c               |   4 +-
 drivers/regulator/da9211-regulator.c               |  23 ++--
 drivers/regulator/gpio-regulator.c                 |  17 ++-
 drivers/regulator/of_regulator.c                   |   1 +
 drivers/regulator/qcom_smd-regulator.c             | 123 ++++++++++++++++++++-
 include/linux/mfd/da9055/pdata.h                   |   5 +-
 include/linux/regulator/da9211.h                   |   4 +-
 include/linux/regulator/driver.h                   |   3 +
 include/linux/soc/qcom/smd-rpm.h                   |   1 +
 17 files changed, 367 insertions(+), 37 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/regulator/88pg86x.txt
 create mode 100644 drivers/regulator/88pg86x.c

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 488 bytes --]

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [GIT PULL] regulator updates for v4.17
  2018-04-02 16:34 [GIT PULL] regulator updates for v4.17 Mark Brown
@ 2018-04-03 19:00 ` Linus Torvalds
  2018-04-04 10:16   ` Mark Brown
  0 siblings, 1 reply; 3+ messages in thread
From: Linus Torvalds @ 2018-04-03 19:00 UTC (permalink / raw)
  To: Mark Brown; +Cc: Linux Kernel Mailing List, Liam Girdwood

On Mon, Apr 2, 2018 at 9:34 AM, Mark Brown <broonie@kernel.org> wrote:
>
> A very small set of updates for the regulator API this time around,
> there's a few bug fixes and also:

Heh. This one was "very small", and the regmap update was "fairly large".

I think the regmap one was smaller. This one actually has a new
driver, the regmap one looked like mostly cleanups.

But I've used your words for the commit logs.

               Linus

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [GIT PULL] regulator updates for v4.17
  2018-04-03 19:00 ` Linus Torvalds
@ 2018-04-04 10:16   ` Mark Brown
  0 siblings, 0 replies; 3+ messages in thread
From: Mark Brown @ 2018-04-04 10:16 UTC (permalink / raw)
  To: Linus Torvalds; +Cc: Linux Kernel Mailing List, Liam Girdwood

[-- Attachment #1: Type: text/plain, Size: 691 bytes --]

On Tue, Apr 03, 2018 at 12:00:24PM -0700, Linus Torvalds wrote:
> On Mon, Apr 2, 2018 at 9:34 AM, Mark Brown <broonie@kernel.org> wrote:

> > A very small set of updates for the regulator API this time around,
> > there's a few bug fixes and also:

> Heh. This one was "very small", and the regmap update was "fairly large".

> I think the regmap one was smaller. This one actually has a new
> driver, the regmap one looked like mostly cleanups.

> But I've used your words for the commit logs.

Yeah, I know - I'm not so much measuring it by the absolute volume of
changes as I am by how many changes I expect to see in the subsystem and
where they are (core vs drivers).  

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 488 bytes --]

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2018-04-04 10:16 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-04-02 16:34 [GIT PULL] regulator updates for v4.17 Mark Brown
2018-04-03 19:00 ` Linus Torvalds
2018-04-04 10:16   ` Mark Brown

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®