linux-input.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Lee Jones <lee.jones@linaro.org>
To: Cristian Ciocaltea <cristian.ciocaltea@gmail.com>
Cc: "Mark Brown" <broonie@kernel.org>,
	"Rob Herring" <robh+dt@kernel.org>,
	"Dmitry Torokhov" <dmitry.torokhov@gmail.com>,
	"Sebastian Reichel" <sre@kernel.org>,
	"Manivannan Sadhasivam" <manivannan.sadhasivam@linaro.org>,
	"Liam Girdwood" <lgirdwood@gmail.com>,
	"Andreas Färber" <afaerber@suse.de>,
	"Linus Walleij" <linus.walleij@linaro.org>,
	linux-actions@lists.infradead.org, devicetree@vger.kernel.org,
	linux-kernel@vger.kernel.org, linux-input@vger.kernel.org,
	linux-pm@vger.kernel.org
Subject: [GIT PULL] Immutable branch between MFD and Input due for the v5.13 merge window
Date: Tue, 9 Mar 2021 13:53:02 +0000	[thread overview]
Message-ID: <20210309135302.GP4931@dell> (raw)
In-Reply-To: <cover.1611653995.git.cristian.ciocaltea@gmail.com>

Enjoy!

The following changes since commit fe07bfda2fb9cdef8a4d4008a409bb02f35f1bd8:

  Linux 5.12-rc1 (2021-02-28 16:05:19 -0800)

are available in the Git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git ib-mfd-input-v5.13

for you to fetch changes up to b58c808ca46c163c1924ec5d3285e67e9217ec74:

  MAINTAINERS: Add entry for ATC260x PMIC (2021-03-09 13:50:39 +0000)

----------------------------------------------------------------
Immutable branch between MFD and Input due for the v5.13 merge window

----------------------------------------------------------------
Cristian Ciocaltea (4):
      dt-bindings: input: Add reset-time-sec common property
      dt-bindings: mfd: Add Actions Semi ATC260x PMIC binding
      mfd: Add MFD driver for ATC260x PMICs
      input: atc260x: Add onkey driver for ATC260x PMICs

Manivannan Sadhasivam (1):
      MAINTAINERS: Add entry for ATC260x PMIC

 Documentation/devicetree/bindings/input/input.yaml |   7 +
 .../devicetree/bindings/mfd/actions,atc260x.yaml   | 183 ++++++++++++
 MAINTAINERS                                        |  12 +
 drivers/input/misc/Kconfig                         |  11 +
 drivers/input/misc/Makefile                        |   2 +-
 drivers/input/misc/atc260x-onkey.c                 | 305 ++++++++++++++++++++
 drivers/mfd/Kconfig                                |  18 ++
 drivers/mfd/Makefile                               |   3 +
 drivers/mfd/atc260x-core.c                         | 310 +++++++++++++++++++++
 drivers/mfd/atc260x-i2c.c                          |  64 +++++
 include/linux/mfd/atc260x/atc2603c.h               | 281 +++++++++++++++++++
 include/linux/mfd/atc260x/atc2609a.h               | 308 ++++++++++++++++++++
 include/linux/mfd/atc260x/core.h                   |  58 ++++
 13 files changed, 1561 insertions(+), 1 deletion(-)
 create mode 100644 Documentation/devicetree/bindings/mfd/actions,atc260x.yaml
 create mode 100644 drivers/input/misc/atc260x-onkey.c
 create mode 100644 drivers/mfd/atc260x-core.c
 create mode 100644 drivers/mfd/atc260x-i2c.c
 create mode 100644 include/linux/mfd/atc260x/atc2603c.h
 create mode 100644 include/linux/mfd/atc260x/atc2609a.h
 create mode 100644 include/linux/mfd/atc260x/core.h

-- 
Lee Jones [李琼斯]
Senior Technical Lead - Developer Services
Linaro.org │ Open source software for Arm SoCs
Follow Linaro: Facebook | Twitter | Blog

  parent reply	other threads:[~2021-03-09 13:53 UTC|newest]

Thread overview: 17+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-01-26  9:55 [PATCH v7 0/5] Add initial support for ATC260x PMICs Cristian Ciocaltea
2021-01-26  9:55 ` [PATCH v7 1/5] dt-bindings: input: Add reset-time-sec common property Cristian Ciocaltea
2021-01-26  9:55 ` [PATCH v7 2/5] dt-bindings: mfd: Add Actions Semi ATC260x PMIC binding Cristian Ciocaltea
2021-01-26  9:55 ` [PATCH v7 3/5] mfd: Add MFD driver for ATC260x PMICs Cristian Ciocaltea
2021-01-26  9:56 ` [PATCH v7 4/5] input: atc260x: Add onkey " Cristian Ciocaltea
2021-01-26  9:56 ` [PATCH v7 5/5] MAINTAINERS: Add entry for ATC260x PMIC Cristian Ciocaltea
2021-02-21 16:36 ` [PATCH v7 0/5] Add initial support for ATC260x PMICs Cristian Ciocaltea
2021-02-22  9:02   ` Lee Jones
2021-02-22 15:16     ` Cristian Ciocaltea
2021-02-22 15:30       ` Lee Jones
2021-02-22 16:08         ` Cristian Ciocaltea
2021-02-22 16:24           ` Lee Jones
2021-03-09 13:53 ` Lee Jones [this message]
2021-03-09 20:04   ` [GIT PULL] Immutable branch between MFD and Input due for the v5.13 merge window Lee Jones
2021-03-10 11:12     ` Lee Jones
2021-03-25 19:54       ` Dmitry Torokhov
2021-03-26  8:18         ` Lee Jones

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20210309135302.GP4931@dell \
    --to=lee.jones@linaro.org \
    --cc=afaerber@suse.de \
    --cc=broonie@kernel.org \
    --cc=cristian.ciocaltea@gmail.com \
    --cc=devicetree@vger.kernel.org \
    --cc=dmitry.torokhov@gmail.com \
    --cc=lgirdwood@gmail.com \
    --cc=linus.walleij@linaro.org \
    --cc=linux-actions@lists.infradead.org \
    --cc=linux-input@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-pm@vger.kernel.org \
    --cc=manivannan.sadhasivam@linaro.org \
    --cc=robh+dt@kernel.org \
    --cc=sre@kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).