* [GIT PULL] LEDs for v7.1
@ 2026-04-20 8:20 Lee Jones
2026-04-20 19:13 ` pr-tracker-bot
0 siblings, 1 reply; 2+ messages in thread
From: Lee Jones @ 2026-04-20 8:20 UTC (permalink / raw)
To: Linus Torvalds; +Cc: Linux Kernel Mailing List, Pavel Machek
Good morning Linus,
The following changes since commit 6de23f81a5e08be8fbf5e8d7e9febc72a5b5f27f:
Linux 7.0-rc1 (2026-02-22 13:18:59 -0800)
are available in the Git repository at:
git://git.kernel.org/pub/scm/linux/kernel/git/lee/leds.git tags/leds-next-7.1
for you to fetch changes up to 7a43ccf85dfe06eef483c034e68b81ff326741aa:
leds: class: Make led_remove_lookup() NULL-aware (2026-04-09 13:49:19 +0100)
----------------------------------------------------------------
LEDs for v7.1
* Core:
* Implement fallback to software node name for LED names
* Fix formatting issues in `led-core.c` reported by checkpatch.pl
* Make `led_remove_lookup()` NULL-aware
* Switch from `class_find_device_by_of_node()` to `class_find_device_by_fwnode()`
* LGM SSO:
* Fix a typo in the `GET_SRC_OFFSET` macro
* Multicolor:
* Fix a signedness error by changing the `intensity_value` type to `unsigned int`
* Qualcomm LPG:
* Prevent array overflow when selecting high-resolution values
* TI LP8860:
* Do not unconditionally program the EEPROM on probe
* Hold the mutex lock for the entirety of the EEPROM programming process
* Kinetic KTD2692:
* Make the `ktd2692_timing` variable static to resolve a sparse warning
* LGM SSO:
* Remove a duplicate assignment of `priv->mmap` in `intel_sso_led_probe()`
* TTY Trigger:
* Prefer `IS_ERR_OR_NULL()` over manual NULL checks
* TI LM3642:
* Use `guard(mutex)` to simplify locking and avoid manual `mutex_unlock()` calls
* TI LP5569:
* Use `sysfs_emit()` instead of `sprintf()` for sysfs outputs
* TI LP8860:
* Return directly from `lp8860_init()` instead of using empty `goto` statements
* Use a single regmap table and an access table instead of separate maps for normal and EEPROM registers
* Remove an unused read of the `STATUS` register during EEPROM programming
* Core:
* Drop the unneeded dependency on `OF_GPIO` from `LEDS_NETXBIG` in Kconfig
* Spreadtrum SC2731:
* Add a compatible string for the SC2730 PMIC LED controller
* TI LP5860:
* Add the `enable-gpios` property for the `VIO_EN` pin
----------------------------------------------------------------
Andrew Davis (5):
leds: lp8860: Use a single regmap table
leds: lp8860: Return directly from lp8860_init
leds: lp8860: Hold lock for all of EEPROM programming
leds: lp8860: Remove unused read of STATUS register
leds: lp8860: Do not always program EEPROM on probe
Andy Shevchenko (1):
leds: class: Make led_remove_lookup() NULL-aware
Bartosz Golaszewski (1):
leds: Kconfig: Drop unneeded dependency on OF_GPIO
Chen Ni (1):
leds: lgm-sso: Remove duplicate assignments for priv->mmap
Dmitry Torokhov (3):
leds: core: Implement fallback to software node name for LED names
leds: core: Fix formatting issues
leds: led-class: Switch to using class_find_device_by_fwnode()
Greg Kroah-Hartman (1):
leds: qcom-lpg: Check for array overflow when selecting the high resolution
Krzysztof Kozlowski (1):
leds: ktd2692: Make ktd2692_timing variable static
Lukas Kraft (1):
leds: lgm-sso: Fix typo in macro for src offset
Michael Tretter (1):
leds: multicolor: Change intensity_value to unsigned int
Neel Bullywon (1):
leds: lp5569: Use sysfs_emit instead of sprintf()
Otto Pflüger (1):
dt-bindings: leds: sc2731: Add compatible for SC2730
Philipp Hahn (1):
leds: Prefer IS_ERR_OR_NULL over manual NULL check
Richard Lyu (1):
leds: lm3642: Use guard to simplify locking
Steffen Trumtrar (1):
dt-bindings: leds: lp5860: add enable-gpio
.../devicetree/bindings/leds/leds-lp5860.yaml | 7 ++
.../devicetree/bindings/leds/sprd,sc2731-bltc.yaml | 7 +-
drivers/leds/Kconfig | 1 -
drivers/leds/blink/leds-lgm-sso.c | 4 +-
drivers/leds/flash/leds-ktd2692.c | 2 +-
drivers/leds/led-class-multicolor.c | 4 +-
drivers/leds/led-class.c | 5 +-
drivers/leds/led-core.c | 20 ++--
drivers/leds/leds-lm3642.c | 18 ++--
drivers/leds/leds-lp5569.c | 4 +-
drivers/leds/leds-lp8860.c | 111 +++++++++------------
drivers/leds/rgb/leds-qcom-lpg.c | 7 +-
drivers/leds/trigger/ledtrig-tty.c | 2 +-
13 files changed, 98 insertions(+), 94 deletions(-)
--
Lee Jones [李琼斯]
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [GIT PULL] LEDs for v7.1
2026-04-20 8:20 [GIT PULL] LEDs for v7.1 Lee Jones
@ 2026-04-20 19:13 ` pr-tracker-bot
0 siblings, 0 replies; 2+ messages in thread
From: pr-tracker-bot @ 2026-04-20 19:13 UTC (permalink / raw)
To: Lee Jones; +Cc: Linus Torvalds, Linux Kernel Mailing List, Pavel Machek
The pull request you sent on Mon, 20 Apr 2026 09:20:24 +0100:
> git://git.kernel.org/pub/scm/linux/kernel/git/lee/leds.git tags/leds-next-7.1
has been merged into torvalds/linux.git:
https://git.kernel.org/torvalds/c/d884efd3401e72d069b678e6353f27f0553615ab
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:[~2026-04-20 19:13 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-04-20 8:20 [GIT PULL] LEDs for v7.1 Lee Jones
2026-04-20 19:13 ` 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