mbox series

[GIT,PULL] LEDs changes for v5.20-rc1

Message ID 20220808135201.GA22949@duo.ucw.cz
State New
Headers show
Series [GIT,PULL] LEDs changes for v5.20-rc1 | expand

Pull-request

git://git.kernel.org/pub/scm/linux/kernel/git/pavel/linux-leds.git/ tags/leds-5.20-rc1

Message

Pavel Machek Aug. 8, 2022, 1:52 p.m. UTC
The following changes since commit f2906aa863381afb0015a9eb7fefad885d4e5a56:

  Linux 5.19-rc1 (2022-06-05 17:18:54 -0700)

are available in the Git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/pavel/linux-leds.git/ tags/leds-5.20-rc1

for you to fetch changes up to 38ba0bb291aacd92d8eaa4a1aa8b63ce4286e797:

  leds: is31fl319x: use simple i2c probe function (2022-08-02 16:43:31 +0200)

----------------------------------------------------------------
LED updates for 5.20: new driver for bcm63138, is31fl319x updates,
fixups for multicolor. Clevo-mail driver got disabled, it needs API
fix.

----------------------------------------------------------------
Andy Shevchenko (4):
      leds: is31fl319x: Make use of device properties
      leds: is31fl319x: Make use of dev_err_probe()
      leds: is31fl319x: Fix devm vs. non-devm ordering
      leds: is31fl319x: use simple i2c probe function

Emil Renner Berthing (3):
      leds: pwm-multicolor: Don't show -EPROBE_DEFER as errors
      dt-bindings: leds: pwm-multicolor: Add active-low property
      leds: pwm-multicolor: Support active-low LEDs

Greg Kroah-Hartman (1):
      leds: turris-omnia: convert to use dev_groups

Krzysztof Kozlowski (3):
      dt-bindings: leds: class-multicolor: reference class directly in multi-led node
      dt-bindings: leds: lp50xx: fix LED children names
      dt-bindings: leds: pwm-multicolor: document max-brigthness

Pavel Machek (1):
      leds: clevo-mail: Mark as broken pending interface fix

Rafał Miłecki (5):
      dt-bindings: leds: add Broadcom's BCM63138 controller
      leds: bcm63138: add support for BCM63138 controller
      dt-bindings: leds: leds-bcm63138: unify full stops in descriptions
      leds: add help info about BCM63138 module name
      leds: leds-bcm63138: get rid of LED_OFF

Randy Dunlap (1):
      leds: clevo-mail: fix Kconfig "its" grammar

Vincent Knecht (5):
      leds: is31fl319x: Add missing si-en compatibles
      leds: is31fl319x: Use non-wildcard names for vars, structs and defines
      leds: is31fl319x: Move chipset-specific values in chipdef struct
      leds: is31fl319x: Add support for is31fl319{0,1,3} chips
      leds: is31fl319x: Cleanup formatting and dev_dbg calls

 .../bindings/leds/cznic,turris-omnia-leds.yaml     |   2 +
 .../devicetree/bindings/leds/leds-bcm63138.yaml    |  95 ++++
 .../bindings/leds/leds-class-multicolor.yaml       |  32 +-
 .../devicetree/bindings/leds/leds-lp50xx.yaml      |  10 +-
 .../bindings/leds/leds-pwm-multicolor.yaml         |  15 +-
 .../devicetree/bindings/leds/leds-qcom-lpg.yaml    |   2 +
 drivers/leds/Kconfig                               |  10 +-
 drivers/leds/blink/Kconfig                         |  14 +
 drivers/leds/blink/Makefile                        |   1 +
 drivers/leds/blink/leds-bcm63138.c                 | 307 ++++++++++++
 drivers/leds/leds-is31fl319x.c                     | 529 +++++++++++++--------
 drivers/leds/leds-turris-omnia.c                   |   4 +-
 drivers/leds/rgb/leds-pwm-multicolor.c             |   8 +-
 13 files changed, 811 insertions(+), 218 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/leds/leds-bcm63138.yaml
 create mode 100644 drivers/leds/blink/leds-bcm63138.c