mbox

[GIT,PULL] mfd: regulator: S2MPA01 device support IB for Mark Brown

Message ID 20140318110947.GR25478@lee--X1
State New
Headers show

Pull-request

git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git ib-mfd-regulator-3.15

Message

Lee Jones March 18, 2014, 11:09 a.m. UTC
FAO Mark,

The following changes since commit 0414855fdc4a40da05221fc6062cccbc0c30f169:

  Linux 3.14-rc5 (2014-03-02 18:56:16 -0800)

are available in the git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git ib-mfd-regulator-3.15

for you to fetch changes up to ba3e31f87e8b736adf01f1dc09cd5618966ee193:

  Documentation: mfd: Add binding document for S2MPA01 (2014-03-18 10:56:45 +0000)

----------------------------------------------------------------
Krzysztof Kozlowski (5):
      mfd: sec-core: Add maximum RTC register for regmap config
      mfd: sec-core: Select different RTC regmaps for devices
      mfd: sec-irq: Use consistent S2MPS11 RTC alarm interrupt indexes
      mfd: sec: Add support for S2MPS14
      mfd: sec-core: Fix possible NULL pointer dereference when i2c_new_dummy error

Pankaj Dubey (1):
      mfd: sec-core: Silence compiler warning

Sachin Kamat (3):
      mfd: Add support for S2MPA01 device
      regulator: Add support for S2MPA01 regulator
      Documentation: mfd: Add binding document for S2MPA01

 Documentation/devicetree/bindings/mfd/s2mpa01.txt |  90 ++++++++++++++++++++++++++
 drivers/mfd/sec-core.c                            | 112 +++++++++++++++++++++++++++++---
 drivers/mfd/sec-irq.c                             |  97 ++++++++++++++++++++++++++--
 drivers/regulator/Kconfig                         |   7 ++
 drivers/regulator/Makefile                        |   1 +
 drivers/regulator/s2mpa01.c                       | 481 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 include/linux/mfd/samsung/core.h                  |  19 ++++--
 include/linux/mfd/samsung/irq.h                   |  81 +++++++++++++++++++++++-
 include/linux/mfd/samsung/rtc.h                   |  57 +++++++++++++++--
 include/linux/mfd/samsung/s2mpa01.h               | 192 +++++++++++++++++++++++++++++++++++++++++++++++++++++++
 include/linux/mfd/samsung/s2mps14.h               | 152 ++++++++++++++++++++++++++++++++++++++++++++
 11 files changed, 1260 insertions(+), 29 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/mfd/s2mpa01.txt
 create mode 100644 drivers/regulator/s2mpa01.c
 create mode 100644 include/linux/mfd/samsung/s2mpa01.h
 create mode 100644 include/linux/mfd/samsung/s2mps14.h

Comments

Krzysztof Kozlowski March 18, 2014, 1:10 p.m. UTC | #1
Hi,

It seems that Sachin's and my patches (mfd: sec: Add support for
S2MPS14) are not in sync. Now the error appears:

drivers/mfd/sec-core.c:342:45: warning: ‘regmap_rtc’ may be used
uninitialized in this function [-Wuninitialized]

I'll send a quick fix for it but in a longterm the rtc-s5m driver should
initialize his regmap on his own.

Best regards,
Krzysztof

O
n Tue, 2014-03-18 at 11:09 +0000, Lee Jones wrote:
> FAO Mark,
> 
> The following changes since commit 0414855fdc4a40da05221fc6062cccbc0c30f169:
> 
>   Linux 3.14-rc5 (2014-03-02 18:56:16 -0800)
> 
> are available in the git repository at:
> 
>   git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git ib-mfd-regulator-3.15
> 
> for you to fetch changes up to ba3e31f87e8b736adf01f1dc09cd5618966ee193:
> 
>   Documentation: mfd: Add binding document for S2MPA01 (2014-03-18 10:56:45 +0000)
> 
> ----------------------------------------------------------------
> Krzysztof Kozlowski (5):
>       mfd: sec-core: Add maximum RTC register for regmap config
>       mfd: sec-core: Select different RTC regmaps for devices
>       mfd: sec-irq: Use consistent S2MPS11 RTC alarm interrupt indexes
>       mfd: sec: Add support for S2MPS14
>       mfd: sec-core: Fix possible NULL pointer dereference when i2c_new_dummy error
> 
> Pankaj Dubey (1):
>       mfd: sec-core: Silence compiler warning
> 
> Sachin Kamat (3):
>       mfd: Add support for S2MPA01 device
>       regulator: Add support for S2MPA01 regulator
>       Documentation: mfd: Add binding document for S2MPA01
> 
>  Documentation/devicetree/bindings/mfd/s2mpa01.txt |  90 ++++++++++++++++++++++++++
>  drivers/mfd/sec-core.c                            | 112 +++++++++++++++++++++++++++++---
>  drivers/mfd/sec-irq.c                             |  97 ++++++++++++++++++++++++++--
>  drivers/regulator/Kconfig                         |   7 ++
>  drivers/regulator/Makefile                        |   1 +
>  drivers/regulator/s2mpa01.c                       | 481 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
>  include/linux/mfd/samsung/core.h                  |  19 ++++--
>  include/linux/mfd/samsung/irq.h                   |  81 +++++++++++++++++++++++-
>  include/linux/mfd/samsung/rtc.h                   |  57 +++++++++++++++--
>  include/linux/mfd/samsung/s2mpa01.h               | 192 +++++++++++++++++++++++++++++++++++++++++++++++++++++++
>  include/linux/mfd/samsung/s2mps14.h               | 152 ++++++++++++++++++++++++++++++++++++++++++++
>  11 files changed, 1260 insertions(+), 29 deletions(-)
>  create mode 100644 Documentation/devicetree/bindings/mfd/s2mpa01.txt
>  create mode 100644 drivers/regulator/s2mpa01.c
>  create mode 100644 include/linux/mfd/samsung/s2mpa01.h
>  create mode 100644 include/linux/mfd/samsung/s2mps14.h
> 

--
To unsubscribe from this list: send the line "unsubscribe devicetree" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Mark Brown March 19, 2014, 12:55 p.m. UTC | #2
On Tue, Mar 18, 2014 at 11:09:47AM +0000, Lee Jones wrote:

> are available in the git repository at:

>   git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git ib-mfd-regulator-3.15

Pulled now, thanks - please use signed tags for pull requests, it's the
standard thing now and gets your changelog in the pull automatically
which is nice.
Lee Jones March 19, 2014, 1:47 p.m. UTC | #3
> > are available in the git repository at:
> 
> >   git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git ib-mfd-regulator-3.15
> 
> Pulled now, thanks - please use signed tags for pull requests, it's the
> standard thing now and gets your changelog in the pull automatically
> which is nice.

Sure, no problem.