mbox

[GIT,PULL] pwm: Changes for v3.15-rc1

Message ID 20140404090928.GA29738@ulmo
State Not Applicable
Headers show

Pull-request

git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git tags/pwm/for-3.15-rc1

Message

Thierry Reding April 4, 2014, 9:09 a.m. UTC
Hi Linus,

The following changes since commit 38dbfb59d1175ef458d006556061adeaa8751b72:

  Linus 3.14-rc1 (2014-02-02 16:42:13 -0800)

are available in the git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git tags/pwm/for-3.15-rc1

for you to fetch changes up to 2ae69a460413615c82381b240df3800a909100d3:

  pwm: pxa: Constify OF match table (2014-04-01 14:06:43 +0200)

Thanks,
Thierry

----------------------------------------------------------------
pwm: Changes for v3.15-rc1

The legacy HAVE_PWM Kconfig symbol is finally being retired. Thanks a
lot to Sascha Hauer for doing that.

Three new drivers are added: Freescale FTM, Cirrus Logic CLPS711X and
Intel Low Power Subsystem.

An assortment of fixes and cleanups rounds things off for this release
cycle.

----------------------------------------------------------------
Alexander Shiyan (1):
      pwm: Add CLPS711X PWM support

Alexandre Belloni (2):
      pwm: atmel: Fix polarity handling
      pwm: atmel: correct CDTY calculation

Jingoo Han (2):
      pwm: samsung: Use SIMPLE_DEV_PM_OPS macro
      pwm: pxa: Use of_match_ptr()

Mika Westerberg (1):
      pwm: add support for Intel Low Power Subsystem PWM

Richard Weinberger (1):
      pwm: renesas-tpu: Add dependency on HAS_IOMEM

Sascha Hauer (1):
      pwm: Remove obsolete HAVE_PWM Kconfig symbol

Thierry Reding (3):
      Revert "pwm: pxa: Use of_match_ptr()"
      pwm: pxa: Fix typo "pwm" -> "PWM"
      pwm: pxa: Constify OF match table

Xiubo Li (2):
      pwm: Add Freescale FTM PWM driver support
      Documentation: Add device tree bindings for Freescale FTM PWM.

 .../bindings/pwm/cirrus,clps711x-pwm.txt           |  16 +
 .../devicetree/bindings/pwm/pwm-fsl-ftm.txt        |  35 ++
 arch/arm/Kconfig                                   |   4 -
 arch/arm/mach-pxa/Kconfig                          |  15 -
 arch/mips/Kconfig                                  |   1 -
 drivers/input/misc/Kconfig                         |   4 +-
 drivers/pwm/Kconfig                                |  30 ++
 drivers/pwm/Makefile                               |   3 +
 drivers/pwm/pwm-atmel.c                            |   9 +-
 drivers/pwm/pwm-clps711x.c                         | 176 ++++++++
 drivers/pwm/pwm-fsl-ftm.c                          | 495 +++++++++++++++++++++
 drivers/pwm/pwm-lpss.c                             | 183 ++++++++
 drivers/pwm/pwm-pxa.c                              |   4 +-
 drivers/pwm/pwm-samsung.c                          |   5 +-
 include/linux/pwm.h                                |   2 +-
 15 files changed, 952 insertions(+), 30 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/pwm/cirrus,clps711x-pwm.txt
 create mode 100644 Documentation/devicetree/bindings/pwm/pwm-fsl-ftm.txt
 create mode 100644 drivers/pwm/pwm-clps711x.c
 create mode 100644 drivers/pwm/pwm-fsl-ftm.c
 create mode 100644 drivers/pwm/pwm-lpss.c