All of lore.kernel.org
 help / color / mirror / Atom feed
* [GIT PULL] extcon next for 6.17
@ 2025-07-26  0:34 Chanwoo Choi
  2025-07-26  6:53 ` Greg Kroah-Hartman
  0 siblings, 1 reply; 3+ messages in thread
From: Chanwoo Choi @ 2025-07-26  0:34 UTC (permalink / raw)
  To: Greg Kroah-Hartman
  Cc: Linux Kernel Mailing List, Chanwoo Choi, Chanwoo Choi,
	MyungJoo Ham

Dear Greg,

This is extcon-next pull request. I add detailed description of
this pull request on below. Please pull extcon with following updates.

Best Regards,
Chanwoo Choi


The following changes since commit 86731a2a651e58953fc949573895f2fa6d456841:

  Linux 6.16-rc3 (2025-06-22 13:30:08 -0700)

are available in the Git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git tags/extcon-next-for-6.17

for you to fetch changes up to 5f09caafc652bcee7a5247e40dd34d1de1ad7d7f:

  extcon: fsa9480: Avoid buffer overflow in fsa9480_handle_change() (2025-07-19 12:39:13 +0900)

----------------------------------------------------------------
Update extcon next for v6.17

Detailed description for this pull request:
- Fix wakeup source leaks on device unbind for extcon drivers

- Add new Maxim MAX14526 MUIC extcon driver and dt-binding document
 : The MAX14526 is designed to simplify interface requirements on portable
   devices by multiplexing common inputs (USB, UART, Microphone, Stereo Audio
   and Composite Video) on a single micro/mini USB connector. The USB input
   supports Hi-Speed USB and the audio/video inputs feature
 : This provides the following supported external connector detection
   - EXTCON_USB
   - EXTCON_USB_HOST
   - EXTCON_CHG_USB_FAST
   - EXTCON_DISP_MHL

- Fix buffer overflow detected by linuxtesting.org SVACE on extcon-fsa9480.c

----------------------------------------------------------------
Krzysztof Kozlowski (5):
      extcon: adc-jack: Fix wakeup source leaks on device unbind
      extcon: axp288: Fix wakeup source leaks on device unbind
      extcon: fsa9480: Fix wakeup source leaks on device unbind
      extcon: qcom-spmi-misc: Fix wakeup source leaks on device unbind
      extcon: adc-jack: Cleanup wakeup source only if it was enabled

Randy Dunlap (2):
      extcon: max14526: avoid defined but not used warning
      extcon: max14526: depends on I2C to prevent build warning/errors

Svyatoslav Ryhel (2):
      dt-bindings: extcon: Document Maxim MAX14526 MUIC
      extcon: Add basic support for Maxim MAX14526 MUIC

Vladimir Moskovkin (1):
      extcon: fsa9480: Avoid buffer overflow in fsa9480_handle_change()

 .../devicetree/bindings/extcon/maxim,max14526.yaml |  80 ++++++
 drivers/extcon/Kconfig                             |  13 +
 drivers/extcon/Makefile                            |   1 +
 drivers/extcon/extcon-adc-jack.c                   |   2 +
 drivers/extcon/extcon-axp288.c                     |   2 +-
 drivers/extcon/extcon-fsa9480.c                    |   6 +-
 drivers/extcon/extcon-max14526.c                   | 302 +++++++++++++++++++++
 drivers/extcon/extcon-qcom-spmi-misc.c             |   2 +-
 8 files changed, 404 insertions(+), 4 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/extcon/maxim,max14526.yaml
 create mode 100644 drivers/extcon/extcon-max14526.c

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

* Re: [GIT PULL] extcon next for 6.17
  2025-07-26  0:34 [GIT PULL] extcon next for 6.17 Chanwoo Choi
@ 2025-07-26  6:53 ` Greg Kroah-Hartman
  2025-08-01 13:31   ` Chanwoo Choi
  0 siblings, 1 reply; 3+ messages in thread
From: Greg Kroah-Hartman @ 2025-07-26  6:53 UTC (permalink / raw)
  To: Chanwoo Choi; +Cc: Linux Kernel Mailing List, Chanwoo Choi, MyungJoo Ham

On Sat, Jul 26, 2025 at 09:34:47AM +0900, Chanwoo Choi wrote:
> Dear Greg,
> 
> This is extcon-next pull request. I add detailed description of
> this pull request on below. Please pull extcon with following updates.
> 
> Best Regards,
> Chanwoo Choi
> 
> 
> The following changes since commit 86731a2a651e58953fc949573895f2fa6d456841:
> 
>   Linux 6.16-rc3 (2025-06-22 13:30:08 -0700)
> 
> are available in the Git repository at:
> 
>   git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git tags/extcon-next-for-6.17
> 
> for you to fetch changes up to 5f09caafc652bcee7a5247e40dd34d1de1ad7d7f:
> 
>   extcon: fsa9480: Avoid buffer overflow in fsa9480_handle_change() (2025-07-19 12:39:13 +0900)

My tree is closed now, sorry.  Can you break this up into different pull
requests after -rc1 is out, one for bugfixes, and one for new features
for 6.18-rc1?

thanks,

greg k-h

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

* Re: [GIT PULL] extcon next for 6.17
  2025-07-26  6:53 ` Greg Kroah-Hartman
@ 2025-08-01 13:31   ` Chanwoo Choi
  0 siblings, 0 replies; 3+ messages in thread
From: Chanwoo Choi @ 2025-08-01 13:31 UTC (permalink / raw)
  To: Greg Kroah-Hartman; +Cc: Linux Kernel Mailing List, Chanwoo Choi, MyungJoo Ham

25. 7. 26. 15:53에 Greg Kroah-Hartman 이(가) 쓴 글:
> On Sat, Jul 26, 2025 at 09:34:47AM +0900, Chanwoo Choi wrote:
>> Dear Greg,
>>
>> This is extcon-next pull request. I add detailed description of
>> this pull request on below. Please pull extcon with following updates.
>>
>> Best Regards,
>> Chanwoo Choi
>>
>>
>> The following changes since commit 86731a2a651e58953fc949573895f2fa6d456841:
>>
>>   Linux 6.16-rc3 (2025-06-22 13:30:08 -0700)
>>
>> are available in the Git repository at:
>>
>>   git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git tags/extcon-next-for-6.17
>>
>> for you to fetch changes up to 5f09caafc652bcee7a5247e40dd34d1de1ad7d7f:
>>
>>   extcon: fsa9480: Avoid buffer overflow in fsa9480_handle_change() (2025-07-19 12:39:13 +0900)
> 
> My tree is closed now, sorry.  Can you break this up into different pull
> requests after -rc1 is out, one for bugfixes, and one for new features
> for 6.18-rc1?


I'm sorry for late pull request. There are no new feature of extcon core.
This pull request includes the new extcon driver.

I'll send the separate pull request according to your comment.

-- 
Best Regards,
Samsung Electronics
Chanwoo Choi


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

end of thread, other threads:[~2025-08-01 13:31 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-07-26  0:34 [GIT PULL] extcon next for 6.17 Chanwoo Choi
2025-07-26  6:53 ` Greg Kroah-Hartman
2025-08-01 13:31   ` Chanwoo Choi

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.