The Linux Kernel Mailing List
 help / color / mirror / Atom feed
* [GIT PULL] regulator updates for v5.20
@ 2022-08-01 12:38 Mark Brown
  2022-08-02 18:02 ` pr-tracker-bot
  0 siblings, 1 reply; 2+ messages in thread
From: Mark Brown @ 2022-08-01 12:38 UTC (permalink / raw)
  To: Linus Torvalds; +Cc: Liam Girdwood, linux-kernel, Mark Brown

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/plain, Size: 5588 bytes --]

The following changes since commit 122e951eb8045338089b086c8bd9b0b9afb04a92:

  regulator: qcom_smd: correct MP5496 ranges (2022-06-07 20:38:09 +0100)

are available in the Git repository at:

  https://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git tags/regulator-v5.20

for you to fetch changes up to efc93392960cb9c3534e7aed15481ca7bcfdf15c:

  regulator: Consumer load management improvements (2022-07-28 00:01:30 +0100)

----------------------------------------------------------------
regulator: Updates for v5.20

This has been a fairly quiet release for the regulator API, a few new
drivers and a small API update:

 - Support for specifying an initial load as part of requesting
   regulators through the bulk API.
 - Support for Maxim MAX597x, Qualcomm PM8074, PM8909 and Realtek RT5120
   devices.

----------------------------------------------------------------
Axel Lin (1):
      regulator: max597x: Don't return uninitialized variable in .probe

ChiYuan Huang (5):
      regulator: rt5190a: check if init_data is NULL, bypass rt5190a_of_parse_cb
      regulator: rt5120: Add PMIC regulator support
      regulator: mt6370: Add mt6370 DisplayBias and VibLDO support
      regulator: mt6370: Use 'fwnode_gpiod_get_index' to fix gpio parsing
      regulator: mt6370: Use the correct header for platform_device_id

Christian Kohlschütter (1):
      regulator: core: Fix off-on-delay-us for always-on/boot-on regulators

Douglas Anderson (2):
      regulator: core: Allow specifying an initial load w/ the bulk API
      regulator: core: Allow drivers to define their init data as const

Jean Delvare (1):
      regulator: mt6380: Fix unused array warning

Jiapeng Chong (1):
      regulator: max597x: Remove unused including <linux/version.h>

Lee Jones (1):
      regulator: pwm: Update Lee Jones' email address

Liang He (2):
      regulator: scmi: Add missing of_node_get()
      regulator: of: Fix refcount leak bug in of_get_regulation_constraints()

Mark Brown (3):
      regulator: qcom_smd: Add PM8909 and fix pm8916_pldo range
      regulator: Fix MFD_MAX597X dependency
      regulator: Consumer load management improvements

Mauro Carvalho Chehab (1):
      regulator: fix a kernel-doc warning

Patrick Rudolph (1):
      regulator: max597x: Add support for max597x regulator

Rob Herring (2):
      regulator: dt-bindings: Convert pwm-regulator to DT schema
      regulator: Add missing type for 'regulator-microvolt-offset'

Robert Marko (11):
      regulator: dt-bindings: mps,mp5416: add MP5496 compatible
      regulator: mp5416: alphabetically sort header includes
      regulator: mp5416: use OF match data
      regulator: mp5416: add support for MP5496
      regulator: mp5416: remove kernel.h include
      regulator: qcom_smd: add get_voltage to MP5496
      regulator: qcom_spmi: add support for HT_P150
      regulator: qcom_spmi: add support for HT_P600
      regulator: qcom_spmi: add support for PMP8074 regulators
      regulator: qcom,spmi-regulator: Convert to dtschema
      regulator: qcom,spmi-regulator: add PMP8074 PMIC

Stephan Gerhold (3):
      regulator: qcom_smd: Fix pm8916_pldo range
      regulator: dt-bindings: qcom,smd-rpm: Add PM8909
      regulator: qcom_smd: Add PM8909 RPM regulators

Stephen Kitt (1):
      regulator: rpi-panel-attiny: Use backlight helper

Zhang Jiaming (1):
      regulator: Fix parameter declaration and spelling mistake.

 .../devicetree/bindings/regulator/mps,mp5416.yaml  |   1 +
 .../bindings/regulator/pwm-regulator.txt           |  92 ----
 .../bindings/regulator/pwm-regulator.yaml          | 126 ++++++
 .../bindings/regulator/qcom,smd-rpm-regulator.yaml |   4 +
 .../bindings/regulator/qcom,spmi-regulator.txt     | 347 --------------
 .../bindings/regulator/qcom,spmi-regulator.yaml    | 323 +++++++++++++
 .../devicetree/bindings/regulator/regulator.yaml   |   1 +
 drivers/regulator/Kconfig                          |  28 ++
 drivers/regulator/Makefile                         |   3 +
 drivers/regulator/core.c                           |  25 +-
 drivers/regulator/devres.c                         |  28 ++
 drivers/regulator/max597x-regulator.c              | 502 +++++++++++++++++++++
 drivers/regulator/mp5416.c                         |  30 +-
 drivers/regulator/mt6370-regulator.c               | 390 ++++++++++++++++
 drivers/regulator/mt6380-regulator.c               |   2 +-
 drivers/regulator/of_regulator.c                   |   6 +-
 drivers/regulator/qcom_smd-regulator.c             |  29 +-
 drivers/regulator/qcom_spmi-regulator.c            |  37 ++
 drivers/regulator/rpi-panel-attiny-regulator.c     |   6 +-
 drivers/regulator/rt5120-regulator.c               | 420 +++++++++++++++++
 drivers/regulator/rt5190a-regulator.c              |   3 +
 drivers/regulator/scmi-regulator.c                 |   1 +
 drivers/regulator/ti-abb-regulator.c               |   4 +-
 include/linux/regulator/consumer.h                 |  16 +-
 include/linux/regulator/driver.h                   |   1 +
 25 files changed, 1955 insertions(+), 470 deletions(-)
 delete mode 100644 Documentation/devicetree/bindings/regulator/pwm-regulator.txt
 create mode 100644 Documentation/devicetree/bindings/regulator/pwm-regulator.yaml
 delete mode 100644 Documentation/devicetree/bindings/regulator/qcom,spmi-regulator.txt
 create mode 100644 Documentation/devicetree/bindings/regulator/qcom,spmi-regulator.yaml
 create mode 100644 drivers/regulator/max597x-regulator.c
 create mode 100644 drivers/regulator/mt6370-regulator.c
 create mode 100644 drivers/regulator/rt5120-regulator.c

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

* Re: [GIT PULL] regulator updates for v5.20
  2022-08-01 12:38 [GIT PULL] regulator updates for v5.20 Mark Brown
@ 2022-08-02 18:02 ` pr-tracker-bot
  0 siblings, 0 replies; 2+ messages in thread
From: pr-tracker-bot @ 2022-08-02 18:02 UTC (permalink / raw)
  To: Mark Brown; +Cc: Linus Torvalds, Liam Girdwood, linux-kernel, Mark Brown

The pull request you sent on Mon, 01 Aug 2022 13:38:03 +0100:

> https://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git tags/regulator-v5.20

has been merged into torvalds/linux.git:
https://git.kernel.org/torvalds/c/416e05e5b7ce63402a2c342472799d340559f10e

Thank you!

-- 
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/prtracker.html

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

end of thread, other threads:[~2022-08-02 18:03 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-08-01 12:38 [GIT PULL] regulator updates for v5.20 Mark Brown
2022-08-02 18:02 ` pr-tracker-bot

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