Dear Greg, This is extcon-next pull request for v5.10. I add detailed description of this pull request on below. Please pull extcon with following updates.
Changes from v1: - Fix the wrong commit id of patch. Best Regards, Chanwoo Choi The following changes since commit 856deb866d16e29bd65952e0289066f6078af773: Linux 5.9-rc5 (2020-09-13 16:06:00 -0700) are available in the Git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git tags/extcon-next-for-5.10-v2 for you to fetch changes up to dbc888072a976c2a7f74ad2df1ca3e6894f96002: extcon: axp288: Use module_platform_driver to simplify the code (2020-09-30 00:40:06 +0900) ---------------------------------------------------------------- Detailed description for this pull request: 1. Update extcon driver with minor updates: - Covert the devicetree binding format from txt to yaml and edit the bidning document for extcon-ptn5150.c. - Clean-up the code of extcon-ptn5150.c without any behavior changes. - Replace HTTP links with HTTPS ones on extcon-palmas.c and extcon-usb-gpio.c. - Return the proper error code on extcon-max14577/max77693/max77843.c. - Simplify with dev_err_probe() on extcon-palmas.c. - Use module_platform_driver to simplify the code on extcon-axp288.c. 2. Update MAINTAINERS - Add Krzysztof Kozlowski as maintainer of NXP PTN5150A CC/extcon driver to provide review, feedback and testing. ---------------------------------------------------------------- Alexander A. Klimov (1): extcon: Replace HTTP links with HTTPS ones Andy Shevchenko (1): extcon: ptn5150: Deduplicate parts of dev_err_probe() Krzysztof Kozlowski (20): dt-bindings: extcon: ptn5150: Convert binding to DT schema dt-bindings: extcon: ptn5150: Use generic "interrupts" property dt-bindings: extcon: ptn5150: Make 'vbus-gpios' optional extcon: ptn5150: Fix usage of atomic GPIO with sleeping GPIO chips extcon: ptn5150: Use generic "interrupts" property extcon: ptn5150: Simplify getting vbus-gpios with flags extcon: ptn5150: Lower the noisiness of probe extcon: ptn5150: Check current USB mode when probing extcon: ptn5150: Make 'vbus-gpios' optional extcon: ptn5150: Reduce the amount of logs on deferred probe extcon: ptn5150: Convert to module_i2c_driver extcon: ptn5150: Convert to .probe_new MAINTAINERS: Add entry for NXP PTN5150A CC driver extcon: max14577: Return error code of extcon_dev_allocate() extcon: max77693: Return error code of extcon_dev_allocate() extcon: max77843: Return error code of extcon_dev_allocate() extcon: max8997: Return error code of extcon_dev_allocate() extcon: palmas: Simplify with dev_err_probe() extcon: ptn5150: Use defines for registers extcon: ptn5150: Do not print error during probe if nothing is attached Liu Shixin (1): extcon: axp288: Use module_platform_driver to simplify the code Ramuthevar Vadivel Murugan (2): extcon: ptn5150: Switch to GENMASK() and BIT() macros extcon: ptn5150: Set the VBUS and POLARITY property capability .../devicetree/bindings/extcon/extcon-ptn5150.txt | 27 --- .../devicetree/bindings/extcon/extcon-ptn5150.yaml | 60 ++++++ MAINTAINERS | 7 + drivers/extcon/extcon-axp288.c | 13 +- drivers/extcon/extcon-max14577.c | 2 +- drivers/extcon/extcon-max77693.c | 2 +- drivers/extcon/extcon-max77843.c | 2 +- drivers/extcon/extcon-max8997.c | 2 +- drivers/extcon/extcon-palmas.c | 20 +- drivers/extcon/extcon-ptn5150.c | 226 ++++++++++----------- drivers/extcon/extcon-usb-gpio.c | 2 +- 11 files changed, 185 insertions(+), 178 deletions(-) delete mode 100644 Documentation/devicetree/bindings/extcon/extcon-ptn5150.txt create mode 100644 Documentation/devicetree/bindings/extcon/extcon-ptn5150.yaml