This patchset add a few new feature of extcon-max8997 and fix minor issue of extcon-max8997/77693.
Update extcon-max8997 driver - Consolidate duplicate code - Set default uart/usb path for internal line of muic device - Set default ADC debounce time - Use wq to check cable state after certain delay - Code clean to move defined constant to header file - Make max8997_extcon_cable static Update extcon-max77693 driver - Convert to devm_input_allocate_device() - Code clean to remove unnecessary goto statement - Make max77693_extcon_cable static Rename extcon-gpio.c filename for kernel naming style Thanks, Chanwoo Choi Chanwoo Choi (9): extcon: gpio: Rename filename of extcon-gpio.c according to kernel naming style extcon: max77693: Convert to devm_input_allocate_device() extcon: max77693: Remove unnecessary goto statement to improve readability extcon: max8997: Move defined constant to header file extcon: max8997: Remove duplicate code related to set H/W line path extcon: max8997: Set default of ADC debounce time during initialization extcon: max8997: Consolidate duplicate code for checking ADC/CHG cable type extcon: max8997: Set default UART/USB path on probe extcon: max8997: Use workqueue to check cable state after completing boot of platform drivers/extcon/extcon-gpio.c | 2 +- drivers/extcon/extcon-max77693.c | 79 ++-- drivers/extcon/extcon-max8997.c | 725 ++++++++++++++++++++++++------------ include/linux/extcon/extcon-gpio.h | 52 +++ include/linux/extcon/extcon_gpio.h | 52 --- include/linux/mfd/max8997-private.h | 64 ++++ include/linux/mfd/max8997.h | 25 +- 7 files changed, 662 insertions(+), 337 deletions(-) create mode 100644 include/linux/extcon/extcon-gpio.h delete mode 100644 include/linux/extcon/extcon_gpio.h -- 1.8.0 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to [email protected] More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/

