* [GIT PULL] extcon next for v6.12
@ 2024-09-08 15:18 Chanwoo Choi
2024-09-08 15:49 ` Greg Kroah-Hartman
0 siblings, 1 reply; 2+ messages in thread
From: Chanwoo Choi @ 2024-09-08 15:18 UTC (permalink / raw)
To: Greg Kroah-Hartman; +Cc: Linux Kernel Mailing List, Chanwoo Choi, MyungJoo Ham
Dear Greg,
This is extcon-next pull request for v6.12. 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 47ac09b91befbb6a235ab620c32af719f8208399:
Linux 6.11-rc4 (2024-08-18 13:17:27 -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.12
for you to fetch changes up to 2e01ac83c1c7166e58043ff2bdb0dc7dbfcfd11a:
extcon: lc824206xa: Fix build error of POWER_SUPPLY_PROP_USB_TYPE (2024-09-05 01:44:51 +0900)
----------------------------------------------------------------
Update extcon next for v6.12
Detailed description for this pull request:
- Add missing child node port on exttcon-ptn5150 binding document
- Convert extcon-usb-gpio.txt to yaml format for binding document
- Add new LC824206XA microUSB switch driver
: Add a new driver for the ON Semiconductor LC824206XA microUSB switch and
accessory detector chip. It has been tested on a Lenovo Yoga Tablet 2 Pro
1380. And this driver is only used on x86/ACPI (non devicetree) devices,
Therefor there is no devicetree bindings documentation.
- Apply immutable branch between power_supply and extcon tree for extcon-lc824206xa.c
----------------------------------------------------------------
Chanwoo Choi (1):
Merge tag 'ib-psy-usb-types-signed' of git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply into extcon-next
Frank Li (2):
dt-bindings: extcon: ptn5150: add child node port
dt-bindings: extcon: convert extcon-usb-gpio.txt to yaml format
Hans de Goede (7):
power: supply: "usb_type" property may be written to
power: supply: ucs1002: Adjust ucs1002_set_usb_type() to accept string values
power: supply: rt9467-charger: Remove "usb_type" property write support
power: supply: sysfs: Add power_supply_show_enum_with_available() helper
power: supply: sysfs: Move power_supply_show_enum_with_available() up
power: supply: Change usb_types from an array into a bitmask
extcon: Add LC824206XA microUSB switch driver
Stephen Rothwell (1):
extcon: lc824206xa: Fix build error of POWER_SUPPLY_PROP_USB_TYPE
Documentation/ABI/testing/sysfs-class-power | 7 +-
.../devicetree/bindings/extcon/extcon-ptn5150.yaml | 11 +
.../devicetree/bindings/extcon/extcon-usb-gpio.txt | 21 -
.../bindings/extcon/linux,extcon-usb-gpio.yaml | 37 ++
drivers/extcon/Kconfig | 11 +
drivers/extcon/Makefile | 1 +
drivers/extcon/extcon-intel-cht-wc.c | 15 +-
drivers/extcon/extcon-lc824206xa.c | 495 +++++++++++++++++++++
drivers/phy/ti/phy-tusb1210.c | 11 +-
drivers/power/supply/axp20x_usb_power.c | 13 +-
drivers/power/supply/bq256xx_charger.c | 15 +-
drivers/power/supply/cros_usbpd-charger.c | 22 +-
drivers/power/supply/lenovo_yoga_c630_battery.c | 7 +-
drivers/power/supply/mp2629_charger.c | 15 +-
drivers/power/supply/mt6360_charger.c | 13 +-
drivers/power/supply/mt6370-charger.c | 13 +-
drivers/power/supply/power_supply_core.c | 4 -
drivers/power/supply/power_supply_sysfs.c | 66 +--
drivers/power/supply/qcom_battmgr.c | 37 +-
drivers/power/supply/qcom_pmi8998_charger.c | 13 +-
drivers/power/supply/rk817_charger.c | 9 +-
drivers/power/supply/rn5t618_power.c | 13 +-
drivers/power/supply/rt9467-charger.c | 16 +-
drivers/power/supply/rt9471.c | 15 +-
drivers/power/supply/ucs1002_power.c | 26 +-
drivers/usb/typec/anx7411.c | 11 +-
drivers/usb/typec/rt1719.c | 11 +-
drivers/usb/typec/tcpm/tcpm.c | 11 +-
drivers/usb/typec/tipd/core.c | 9 +-
drivers/usb/typec/ucsi/psy.c | 11 +-
include/linux/power_supply.h | 3 +-
31 files changed, 687 insertions(+), 275 deletions(-)
delete mode 100644 Documentation/devicetree/bindings/extcon/extcon-usb-gpio.txt
create mode 100644 Documentation/devicetree/bindings/extcon/linux,extcon-usb-gpio.yaml
create mode 100644 drivers/extcon/extcon-lc824206xa.c
^ permalink raw reply [flat|nested] 2+ messages in thread* Re: [GIT PULL] extcon next for v6.12
2024-09-08 15:18 [GIT PULL] extcon next for v6.12 Chanwoo Choi
@ 2024-09-08 15:49 ` Greg Kroah-Hartman
0 siblings, 0 replies; 2+ messages in thread
From: Greg Kroah-Hartman @ 2024-09-08 15:49 UTC (permalink / raw)
To: Chanwoo Choi; +Cc: Linux Kernel Mailing List, Chanwoo Choi, MyungJoo Ham
On Mon, Sep 09, 2024 at 12:18:11AM +0900, Chanwoo Choi wrote:
> Dear Greg,
>
> This is extcon-next pull request for v6.12. 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 47ac09b91befbb6a235ab620c32af719f8208399:
>
> Linux 6.11-rc4 (2024-08-18 13:17:27 -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.12
Pulled and pushed out, thanks.
greg k-h
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2024-09-08 15:50 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-09-08 15:18 [GIT PULL] extcon next for v6.12 Chanwoo Choi
2024-09-08 15:49 ` Greg Kroah-Hartman
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox