Dear Greg,

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

This patchset is rebased on char-misc-next branch (3.17-rc5).

I'm so sorry for late pull request because I'm out of office for two weeks.

Best Regards,
Chanwoo Choi

The following changes since commit 9e82bf014195d6f0054982c463575cdce24292be:

  Linux 3.17-rc5 (2014-09-14 17:50:12 -0700)

are available in the git repository at:

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

for you to fetch changes up to 62364357c184db52d556f868e493963fac2aea78:

  extcon: gpio: Fix code cleanup (2014-09-22 16:48:47 +0900)

----------------------------------------------------------------
Update extcon for v3.18

This patchset add new extcon provider driver and fix minor issue of extcon 
driver.

Detailed description for patchset:
1. Add new Richtek RT8973A extcon driver
This driver support for Richtek RT8973A which is Micro USB Switch OVP and
i2c interface. The RT8973A is a USB port accessory detector and switch that is
optimized to protect low voltage system from abnormal high input voltage
(up to 28V) and supports high speed USB operation. Also, RT8973A support
'auto-configuration' mode. If auto-configuration mode is enabled, RT8973A
would control internal h/w patch for USB D-/D+ switching.

2. Fix code cleanup for other extcon driver
- extcon-sm5502 driver
 : Fix bug to check cable type and build break.
 : Move header file from include/linux/extcon to drivers/extcon because this
   header file is only user for extcon-sm5502.c.
 : Clean up codes by using checkpatch script
- extcon-max77693 driver
 : Use resource managed interrupt function
 : Fix bug to set ADC debounce time
- extcon-gpio driver
 : Fix minor code cleanup

----------------------------------------------------------------
Chanwoo Choi (6):
      extcon: sm5502: Fix bug to check cable type
      extcon: sm5502: Add I2C dependency to fix build break
      extcon: sm5502: Move sm5502.h header file to extcon directory
      extcon: sm5502: Clean up codes by using checkpatch script
      extcon: rt8973a: Add Richtek RT8973A extcon driver
      dt-bindings: extcon: Add support for Richtek RT8973A MUIC device

George Cherian (1):
      extcon: gpio: Fix code cleanup

Jean Delvare (1):
      extcon: sm5502: Drop useless include

Jonghwa Lee (1):
      extcon: max77693: Fix a bug occured at changing ADC debounce time.

Krzysztof Kozlowski (1):
      extcon: max77693: Use resource managed interrupt line

 .../devicetree/bindings/extcon/extcon-rt8973a.txt  |  25 +
 drivers/extcon/Kconfig                             |  13 +
 drivers/extcon/Makefile                            |   1 +
 drivers/extcon/extcon-gpio.c                       |  10 +-
 drivers/extcon/extcon-max77693.c                   |  37 +-
 drivers/extcon/extcon-rt8973a.c                    | 740 +++++++++++++++++++++
 drivers/extcon/extcon-rt8973a.h                    | 203 ++++++
 drivers/extcon/extcon-sm5502.c                     |  20 +-
 .../sm5502.h => drivers/extcon/extcon-sm5502.h     |   5 -
 include/linux/extcon/extcon-gpio.h                 |   4 +-
 10 files changed, 1012 insertions(+), 46 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/extcon/extcon-rt8973a.txt
 create mode 100644 drivers/extcon/extcon-rt8973a.c
 create mode 100644 drivers/extcon/extcon-rt8973a.h
 rename include/linux/extcon/sm5502.h => drivers/extcon/extcon-sm5502.h (97%)
--
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/

Reply via email to