public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [GIT PULL] MFD for v6.4
@ 2023-05-02 16:25 Lee Jones
  2023-05-02 16:28 ` [GIT PULL] LEDs " Lee Jones
  2023-05-02 17:57 ` [GIT PULL] MFD " pr-tracker-bot
  0 siblings, 2 replies; 5+ messages in thread
From: Lee Jones @ 2023-05-02 16:25 UTC (permalink / raw)
  To: Linus Torvalds; +Cc: Lee Jones, Linux Kernel Mailing List

Good afternoon Linus,

The following changes since commit fe15c26ee26efa11741a7b632e9f23b01aca4cc6:

  Linux 6.3-rc1 (2023-03-05 14:52:03 -0800)

are available in the Git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/lee/leds.git tags/leds-next-6.4

for you to fetch changes up to 8325642d2757eba80210dec727bb0bcffb837ff1:

  leds: bd2606mvv: Driver for the Rohm 6 Channel i2c LED driver (2023-04-27 17:42:33 +0100)

----------------------------------------------------------------
 - New Drivers
   - Add support for MediaTek MT6370 LED Indicator
   - Add support for MediaTek MT6370 Flashlight
   - Add support for QCOM PMIC Flash
   - Add support for Rohm BD2606MVV Charge Pump LED

 - New Device Support
   - Add support for PMK8550 PWM to QCOM LPG

 - New Functionality
   - Add support for high resolution PWM to QCOM LPG

 - Fix-ups
   - Kconfig 'depends' and 'select' dependency changes
   - Remove unused / irrelevant includes
   - Remove unnecessary checks (already performed further into the call stack)
   - Trivial: Fix commentary, simplify error messages
   - Rid 'defined but not used' warnings
   - Provide documentation
   - Explicitly provide include files

 - Bug Fixes
   - Mark GPIO LED as BROKEN
   - Fix Kconfig entries
   - Fix various Smatch staticify reports
   - Fix error handling (or a lack there of)

----------------------------------------------------------------
Alexander Dahl (1):
      docs: leds: ledtrig-oneshot: Fix spelling mistake

Andreas Kemnade (2):
      dt-bindings: leds: Add ROHM BD2606MVV LED
      leds: bd2606mvv: Driver for the Rohm 6 Channel i2c LED driver

Andy Shevchenko (2):
      leds: lp8860: Remove unused of_gpio,h
      leds: lp8860: Remove duplicate NULL checks for gpio_desc

Anjelique Melendez (3):
      dt-bindings: leds-qcom-lpg: Add qcom,pmk8550-pwm compatible string
      leds: rgb: leds-qcom-lpg: Add support for high resolution PWM
      leds: rgb: leds-qcom-lpg: Add support for PMK8550 PWM

Bagas Sanjaya (4):
      Documentation: leds: Add MT6370 doc to the toctree
      Documentation: leds: mt6370: Properly wrap hw_pattern chart
      Documentation: leds: MT6370: Use bullet lists for timing variables
      MAINTAINERS: Add entry for LED devices documentation

ChiYuan Huang (4):
      leds: rgb: mt6370: Add MediaTek MT6370 current sink type LED Indicator support
      leds: flash: mt6370: Add MediaTek MT6370 flashlight support
      docs: leds: Add MT6370 RGB LED pattern document
      leds: rgb: mt6370: Fix implicit declaration for FIELD_GET

Christophe JAILLET (1):
      leds: pwm-multicolor: Simplify an error message

Fenglin Wu (2):
      leds: flash: Add driver to support flash LED module in QCOM PMICs
      dt-bindings: leds: Add QCOM flash LED controller

H. Nikolaus Schaller (1):
      leds: tca6507: Fix error handling of using fwnode_property_read_string

Krzysztof Kozlowski (1):
      leds: tlc591xx: Mark OF related data as maybe unused

Linus Walleij (1):
      leds: Mark GPIO LED trigger broken

Luca Weiss (1):
      dt-bindings: leds: spmi-flash-led: Add pm6150l compatible

Lukas Bulwahn (1):
      leds: rgb: mt6370: Correct config name to select in LEDS_MT6370_RGB

Manivannan Sadhasivam (1):
      dt-bindings: leds: Document commonly used LED triggers

Rafał Miłecki (1):
      dt-bindings: leds: Add "usbport" trigger

Randy Dunlap (1):
      leds: TI_LMU_COMMON: select REGMAP instead of depending on it

Thomas Weißschuh (1):
      leds: Fix reference to led_set_brightness() in doc

Tom Rix (1):
      leds: flash: Set variables mvflash_{3,4}ch_regs storage-class-specifier to static

Wadim Egorov (1):
      dt-bindings: leds: Convert PCA9532 to dtschema

 Documentation/devicetree/bindings/leds/common.yaml |   35 +-
 .../devicetree/bindings/leds/leds-pca9532.txt      |   49 -
 .../devicetree/bindings/leds/leds-qcom-lpg.yaml    |    1 +
 .../devicetree/bindings/leds/nxp,pca953x.yaml      |   90 ++
 .../bindings/leds/qcom,spmi-flash-led.yaml         |  117 +++
 .../devicetree/bindings/leds/rohm,bd2606mvv.yaml   |   81 ++
 Documentation/leds/index.rst                       |    1 +
 Documentation/leds/leds-mt6370-rgb.rst             |   64 ++
 Documentation/leds/ledtrig-oneshot.rst             |    2 +-
 MAINTAINERS                                        |    1 +
 drivers/leds/Kconfig                               |   16 +-
 drivers/leds/Makefile                              |    1 +
 drivers/leds/flash/Kconfig                         |   28 +
 drivers/leds/flash/Makefile                        |    2 +
 drivers/leds/flash/leds-mt6370-flash.c             |  573 +++++++++++
 drivers/leds/flash/leds-qcom-flash.c               |  773 +++++++++++++++
 drivers/leds/leds-bd2606mvv.c                      |  160 ++++
 drivers/leds/leds-lp8860.c                         |   10 +-
 drivers/leds/leds-tca6507.c                        |    5 +-
 drivers/leds/leds-tlc591xx.c                       |    2 +-
 drivers/leds/rgb/Kconfig                           |   13 +
 drivers/leds/rgb/Makefile                          |    1 +
 drivers/leds/rgb/leds-mt6370-rgb.c                 | 1011 ++++++++++++++++++++
 drivers/leds/rgb/leds-pwm-multicolor.c             |    4 +-
 drivers/leds/rgb/leds-qcom-lpg.c                   |  160 +++-
 drivers/leds/trigger/Kconfig                       |    1 +
 include/linux/leds.h                               |    2 +-
 27 files changed, 3091 insertions(+), 112 deletions(-)
 delete mode 100644 Documentation/devicetree/bindings/leds/leds-pca9532.txt
 create mode 100644 Documentation/devicetree/bindings/leds/nxp,pca953x.yaml
 create mode 100644 Documentation/devicetree/bindings/leds/qcom,spmi-flash-led.yaml
 create mode 100644 Documentation/devicetree/bindings/leds/rohm,bd2606mvv.yaml
 create mode 100644 Documentation/leds/leds-mt6370-rgb.rst
 create mode 100644 drivers/leds/flash/leds-mt6370-flash.c
 create mode 100644 drivers/leds/flash/leds-qcom-flash.c
 create mode 100644 drivers/leds/leds-bd2606mvv.c
 create mode 100644 drivers/leds/rgb/leds-mt6370-rgb.c

-- 
Lee Jones [李琼斯]

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

* Re: [GIT PULL] LEDs for v6.4
  2023-05-02 16:25 [GIT PULL] MFD for v6.4 Lee Jones
@ 2023-05-02 16:28 ` Lee Jones
  2023-05-03 18:20   ` Pavel Machek
  2023-05-02 17:57 ` [GIT PULL] MFD " pr-tracker-bot
  1 sibling, 1 reply; 5+ messages in thread
From: Lee Jones @ 2023-05-02 16:28 UTC (permalink / raw)
  To: Linus Torvalds; +Cc: Linux Kernel Mailing List

Apologies, this is obviously LEDs, not MFD - long day!

On Tue, 02 May 2023, Lee Jones wrote:

> Good afternoon Linus,
> 
> The following changes since commit fe15c26ee26efa11741a7b632e9f23b01aca4cc6:
> 
>   Linux 6.3-rc1 (2023-03-05 14:52:03 -0800)
> 
> are available in the Git repository at:
> 
>   git://git.kernel.org/pub/scm/linux/kernel/git/lee/leds.git tags/leds-next-6.4
> 
> for you to fetch changes up to 8325642d2757eba80210dec727bb0bcffb837ff1:
> 
>   leds: bd2606mvv: Driver for the Rohm 6 Channel i2c LED driver (2023-04-27 17:42:33 +0100)
> 
> ----------------------------------------------------------------
>  - New Drivers
>    - Add support for MediaTek MT6370 LED Indicator
>    - Add support for MediaTek MT6370 Flashlight
>    - Add support for QCOM PMIC Flash
>    - Add support for Rohm BD2606MVV Charge Pump LED
> 
>  - New Device Support
>    - Add support for PMK8550 PWM to QCOM LPG
> 
>  - New Functionality
>    - Add support for high resolution PWM to QCOM LPG
> 
>  - Fix-ups
>    - Kconfig 'depends' and 'select' dependency changes
>    - Remove unused / irrelevant includes
>    - Remove unnecessary checks (already performed further into the call stack)
>    - Trivial: Fix commentary, simplify error messages
>    - Rid 'defined but not used' warnings
>    - Provide documentation
>    - Explicitly provide include files
> 
>  - Bug Fixes
>    - Mark GPIO LED as BROKEN
>    - Fix Kconfig entries
>    - Fix various Smatch staticify reports
>    - Fix error handling (or a lack there of)
> 
> ----------------------------------------------------------------
> Alexander Dahl (1):
>       docs: leds: ledtrig-oneshot: Fix spelling mistake
> 
> Andreas Kemnade (2):
>       dt-bindings: leds: Add ROHM BD2606MVV LED
>       leds: bd2606mvv: Driver for the Rohm 6 Channel i2c LED driver
> 
> Andy Shevchenko (2):
>       leds: lp8860: Remove unused of_gpio,h
>       leds: lp8860: Remove duplicate NULL checks for gpio_desc
> 
> Anjelique Melendez (3):
>       dt-bindings: leds-qcom-lpg: Add qcom,pmk8550-pwm compatible string
>       leds: rgb: leds-qcom-lpg: Add support for high resolution PWM
>       leds: rgb: leds-qcom-lpg: Add support for PMK8550 PWM
> 
> Bagas Sanjaya (4):
>       Documentation: leds: Add MT6370 doc to the toctree
>       Documentation: leds: mt6370: Properly wrap hw_pattern chart
>       Documentation: leds: MT6370: Use bullet lists for timing variables
>       MAINTAINERS: Add entry for LED devices documentation
> 
> ChiYuan Huang (4):
>       leds: rgb: mt6370: Add MediaTek MT6370 current sink type LED Indicator support
>       leds: flash: mt6370: Add MediaTek MT6370 flashlight support
>       docs: leds: Add MT6370 RGB LED pattern document
>       leds: rgb: mt6370: Fix implicit declaration for FIELD_GET
> 
> Christophe JAILLET (1):
>       leds: pwm-multicolor: Simplify an error message
> 
> Fenglin Wu (2):
>       leds: flash: Add driver to support flash LED module in QCOM PMICs
>       dt-bindings: leds: Add QCOM flash LED controller
> 
> H. Nikolaus Schaller (1):
>       leds: tca6507: Fix error handling of using fwnode_property_read_string
> 
> Krzysztof Kozlowski (1):
>       leds: tlc591xx: Mark OF related data as maybe unused
> 
> Linus Walleij (1):
>       leds: Mark GPIO LED trigger broken
> 
> Luca Weiss (1):
>       dt-bindings: leds: spmi-flash-led: Add pm6150l compatible
> 
> Lukas Bulwahn (1):
>       leds: rgb: mt6370: Correct config name to select in LEDS_MT6370_RGB
> 
> Manivannan Sadhasivam (1):
>       dt-bindings: leds: Document commonly used LED triggers
> 
> Rafał Miłecki (1):
>       dt-bindings: leds: Add "usbport" trigger
> 
> Randy Dunlap (1):
>       leds: TI_LMU_COMMON: select REGMAP instead of depending on it
> 
> Thomas Weißschuh (1):
>       leds: Fix reference to led_set_brightness() in doc
> 
> Tom Rix (1):
>       leds: flash: Set variables mvflash_{3,4}ch_regs storage-class-specifier to static
> 
> Wadim Egorov (1):
>       dt-bindings: leds: Convert PCA9532 to dtschema
> 
>  Documentation/devicetree/bindings/leds/common.yaml |   35 +-
>  .../devicetree/bindings/leds/leds-pca9532.txt      |   49 -
>  .../devicetree/bindings/leds/leds-qcom-lpg.yaml    |    1 +
>  .../devicetree/bindings/leds/nxp,pca953x.yaml      |   90 ++
>  .../bindings/leds/qcom,spmi-flash-led.yaml         |  117 +++
>  .../devicetree/bindings/leds/rohm,bd2606mvv.yaml   |   81 ++
>  Documentation/leds/index.rst                       |    1 +
>  Documentation/leds/leds-mt6370-rgb.rst             |   64 ++
>  Documentation/leds/ledtrig-oneshot.rst             |    2 +-
>  MAINTAINERS                                        |    1 +
>  drivers/leds/Kconfig                               |   16 +-
>  drivers/leds/Makefile                              |    1 +
>  drivers/leds/flash/Kconfig                         |   28 +
>  drivers/leds/flash/Makefile                        |    2 +
>  drivers/leds/flash/leds-mt6370-flash.c             |  573 +++++++++++
>  drivers/leds/flash/leds-qcom-flash.c               |  773 +++++++++++++++
>  drivers/leds/leds-bd2606mvv.c                      |  160 ++++
>  drivers/leds/leds-lp8860.c                         |   10 +-
>  drivers/leds/leds-tca6507.c                        |    5 +-
>  drivers/leds/leds-tlc591xx.c                       |    2 +-
>  drivers/leds/rgb/Kconfig                           |   13 +
>  drivers/leds/rgb/Makefile                          |    1 +
>  drivers/leds/rgb/leds-mt6370-rgb.c                 | 1011 ++++++++++++++++++++
>  drivers/leds/rgb/leds-pwm-multicolor.c             |    4 +-
>  drivers/leds/rgb/leds-qcom-lpg.c                   |  160 +++-
>  drivers/leds/trigger/Kconfig                       |    1 +
>  include/linux/leds.h                               |    2 +-
>  27 files changed, 3091 insertions(+), 112 deletions(-)
>  delete mode 100644 Documentation/devicetree/bindings/leds/leds-pca9532.txt
>  create mode 100644 Documentation/devicetree/bindings/leds/nxp,pca953x.yaml
>  create mode 100644 Documentation/devicetree/bindings/leds/qcom,spmi-flash-led.yaml
>  create mode 100644 Documentation/devicetree/bindings/leds/rohm,bd2606mvv.yaml
>  create mode 100644 Documentation/leds/leds-mt6370-rgb.rst
>  create mode 100644 drivers/leds/flash/leds-mt6370-flash.c
>  create mode 100644 drivers/leds/flash/leds-qcom-flash.c
>  create mode 100644 drivers/leds/leds-bd2606mvv.c
>  create mode 100644 drivers/leds/rgb/leds-mt6370-rgb.c
> 
> -- 
> Lee Jones [李琼斯]

-- 
Lee Jones [李琼斯]

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

* Re: [GIT PULL] MFD for v6.4
  2023-05-02 16:25 [GIT PULL] MFD for v6.4 Lee Jones
  2023-05-02 16:28 ` [GIT PULL] LEDs " Lee Jones
@ 2023-05-02 17:57 ` pr-tracker-bot
  1 sibling, 0 replies; 5+ messages in thread
From: pr-tracker-bot @ 2023-05-02 17:57 UTC (permalink / raw)
  To: Lee Jones; +Cc: Linus Torvalds, Lee Jones, Linux Kernel Mailing List

The pull request you sent on Tue, 2 May 2023 17:25:24 +0100:

> git://git.kernel.org/pub/scm/linux/kernel/git/lee/leds.git tags/leds-next-6.4

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

Thank you!

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

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

* Re: [GIT PULL] LEDs for v6.4
  2023-05-02 16:28 ` [GIT PULL] LEDs " Lee Jones
@ 2023-05-03 18:20   ` Pavel Machek
  2023-05-03 18:25     ` Lee Jones
  0 siblings, 1 reply; 5+ messages in thread
From: Pavel Machek @ 2023-05-03 18:20 UTC (permalink / raw)
  To: Lee Jones, linux-leds; +Cc: Linus Torvalds, Linux Kernel Mailing List

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

Hi!

> Apologies, this is obviously LEDs, not MFD - long day!

Thanks for doing this. I guess it may have something to do with the
subject, but please keep linux-leds@vger.kernel.org in the cc list.

Best regards,
								Pavel

> >  - New Drivers
> >    - Add support for MediaTek MT6370 LED Indicator
> >    - Add support for MediaTek MT6370 Flashlight
> >    - Add support for QCOM PMIC Flash
> >    - Add support for Rohm BD2606MVV Charge Pump LED
> > 
> >  - New Device Support
> >    - Add support for PMK8550 PWM to QCOM LPG
> > 
> >  - New Functionality
> >    - Add support for high resolution PWM to QCOM LPG
> > 
> >  - Fix-ups
> >    - Kconfig 'depends' and 'select' dependency changes
> >    - Remove unused / irrelevant includes
> >    - Remove unnecessary checks (already performed further into the call stack)
> >    - Trivial: Fix commentary, simplify error messages
> >    - Rid 'defined but not used' warnings
> >    - Provide documentation
> >    - Explicitly provide include files
> > 
> >  - Bug Fixes
> >    - Mark GPIO LED as BROKEN
> >    - Fix Kconfig entries
> >    - Fix various Smatch staticify reports
> >    - Fix error handling (or a lack there of)
> > 
> > ----------------------------------------------------------------
> > Alexander Dahl (1):
> >       docs: leds: ledtrig-oneshot: Fix spelling mistake
> > 
> > Andreas Kemnade (2):
> >       dt-bindings: leds: Add ROHM BD2606MVV LED
> >       leds: bd2606mvv: Driver for the Rohm 6 Channel i2c LED driver
> > 
> > Andy Shevchenko (2):
> >       leds: lp8860: Remove unused of_gpio,h
> >       leds: lp8860: Remove duplicate NULL checks for gpio_desc
> > 
> > Anjelique Melendez (3):
> >       dt-bindings: leds-qcom-lpg: Add qcom,pmk8550-pwm compatible string
> >       leds: rgb: leds-qcom-lpg: Add support for high resolution PWM
> >       leds: rgb: leds-qcom-lpg: Add support for PMK8550 PWM
> > 
> > Bagas Sanjaya (4):
> >       Documentation: leds: Add MT6370 doc to the toctree
> >       Documentation: leds: mt6370: Properly wrap hw_pattern chart
> >       Documentation: leds: MT6370: Use bullet lists for timing variables
> >       MAINTAINERS: Add entry for LED devices documentation
> > 
> > ChiYuan Huang (4):
> >       leds: rgb: mt6370: Add MediaTek MT6370 current sink type LED Indicator support
> >       leds: flash: mt6370: Add MediaTek MT6370 flashlight support
> >       docs: leds: Add MT6370 RGB LED pattern document
> >       leds: rgb: mt6370: Fix implicit declaration for FIELD_GET
> > 
> > Christophe JAILLET (1):
> >       leds: pwm-multicolor: Simplify an error message
> > 
> > Fenglin Wu (2):
> >       leds: flash: Add driver to support flash LED module in QCOM PMICs
> >       dt-bindings: leds: Add QCOM flash LED controller
> > 
> > H. Nikolaus Schaller (1):
> >       leds: tca6507: Fix error handling of using fwnode_property_read_string
> > 
> > Krzysztof Kozlowski (1):
> >       leds: tlc591xx: Mark OF related data as maybe unused
> > 
> > Linus Walleij (1):
> >       leds: Mark GPIO LED trigger broken
> > 
> > Luca Weiss (1):
> >       dt-bindings: leds: spmi-flash-led: Add pm6150l compatible
> > 
> > Lukas Bulwahn (1):
> >       leds: rgb: mt6370: Correct config name to select in LEDS_MT6370_RGB
> > 
> > Manivannan Sadhasivam (1):
> >       dt-bindings: leds: Document commonly used LED triggers
> > 
> > Rafał Miłecki (1):
> >       dt-bindings: leds: Add "usbport" trigger
> > 
> > Randy Dunlap (1):
> >       leds: TI_LMU_COMMON: select REGMAP instead of depending on it
> > 
> > Thomas Weißschuh (1):
> >       leds: Fix reference to led_set_brightness() in doc
> > 
> > Tom Rix (1):
> >       leds: flash: Set variables mvflash_{3,4}ch_regs storage-class-specifier to static
> > 
> > Wadim Egorov (1):
> >       dt-bindings: leds: Convert PCA9532 to dtschema
> > 
> >  Documentation/devicetree/bindings/leds/common.yaml |   35 +-
> >  .../devicetree/bindings/leds/leds-pca9532.txt      |   49 -
> >  .../devicetree/bindings/leds/leds-qcom-lpg.yaml    |    1 +
> >  .../devicetree/bindings/leds/nxp,pca953x.yaml      |   90 ++
> >  .../bindings/leds/qcom,spmi-flash-led.yaml         |  117 +++
> >  .../devicetree/bindings/leds/rohm,bd2606mvv.yaml   |   81 ++
> >  Documentation/leds/index.rst                       |    1 +
> >  Documentation/leds/leds-mt6370-rgb.rst             |   64 ++
> >  Documentation/leds/ledtrig-oneshot.rst             |    2 +-
> >  MAINTAINERS                                        |    1 +
> >  drivers/leds/Kconfig                               |   16 +-
> >  drivers/leds/Makefile                              |    1 +
> >  drivers/leds/flash/Kconfig                         |   28 +
> >  drivers/leds/flash/Makefile                        |    2 +
> >  drivers/leds/flash/leds-mt6370-flash.c             |  573 +++++++++++
> >  drivers/leds/flash/leds-qcom-flash.c               |  773 +++++++++++++++
> >  drivers/leds/leds-bd2606mvv.c                      |  160 ++++
> >  drivers/leds/leds-lp8860.c                         |   10 +-
> >  drivers/leds/leds-tca6507.c                        |    5 +-
> >  drivers/leds/leds-tlc591xx.c                       |    2 +-
> >  drivers/leds/rgb/Kconfig                           |   13 +
> >  drivers/leds/rgb/Makefile                          |    1 +
> >  drivers/leds/rgb/leds-mt6370-rgb.c                 | 1011 ++++++++++++++++++++
> >  drivers/leds/rgb/leds-pwm-multicolor.c             |    4 +-
> >  drivers/leds/rgb/leds-qcom-lpg.c                   |  160 +++-
> >  drivers/leds/trigger/Kconfig                       |    1 +
> >  include/linux/leds.h                               |    2 +-
> >  27 files changed, 3091 insertions(+), 112 deletions(-)
> >  delete mode 100644 Documentation/devicetree/bindings/leds/leds-pca9532.txt
> >  create mode 100644 Documentation/devicetree/bindings/leds/nxp,pca953x.yaml
> >  create mode 100644 Documentation/devicetree/bindings/leds/qcom,spmi-flash-led.yaml
> >  create mode 100644 Documentation/devicetree/bindings/leds/rohm,bd2606mvv.yaml
> >  create mode 100644 Documentation/leds/leds-mt6370-rgb.rst
> >  create mode 100644 drivers/leds/flash/leds-mt6370-flash.c
> >  create mode 100644 drivers/leds/flash/leds-qcom-flash.c
> >  create mode 100644 drivers/leds/leds-bd2606mvv.c
> >  create mode 100644 drivers/leds/rgb/leds-mt6370-rgb.c
> > 
> > -- 
> > Lee Jones [李琼斯]
> 

-- 
People of Russia, stop Putin before his war on Ukraine escalates.

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

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

* Re: [GIT PULL] LEDs for v6.4
  2023-05-03 18:20   ` Pavel Machek
@ 2023-05-03 18:25     ` Lee Jones
  0 siblings, 0 replies; 5+ messages in thread
From: Lee Jones @ 2023-05-03 18:25 UTC (permalink / raw)
  To: Pavel Machek; +Cc: linux-leds, Linus Torvalds, Linux Kernel Mailing List

On Wed, 03 May 2023, Pavel Machek wrote:

> Hi!
> 
> > Apologies, this is obviously LEDs, not MFD - long day!
> 
> Thanks for doing this. I guess it may have something to do with the
> subject, but please keep linux-leds@vger.kernel.org in the cc list.

No problem.

Sure.  I'll try to remember to do that next time.

-- 
Lee Jones [李琼斯]

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

end of thread, other threads:[~2023-05-03 18:25 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-05-02 16:25 [GIT PULL] MFD for v6.4 Lee Jones
2023-05-02 16:28 ` [GIT PULL] LEDs " Lee Jones
2023-05-03 18:20   ` Pavel Machek
2023-05-03 18:25     ` Lee Jones
2023-05-02 17:57 ` [GIT PULL] MFD " 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