From: Milo Kim <milo.kim@ti.com>
To: Lee Jones <lee.jones@linaro.org>, Samuel Ortiz <sameo@linux.intel.com>
Cc: Milo Kim <milo.kim@ti.com>,
Thierry Reding <thierry.reding@gmail.com>,
linux-kernel@vger.kernel.org, devicetree@vger.kernel.org,
linux-pwm@vger.kernel.org,
Linus Walleij <linus.walleij@linaro.org>
Subject: Re: [PATCH v4 0/4] LP3943 MFD driver for a GPIO expander and a PWM generator
Date: Wed, 4 Dec 2013 08:27:44 +0900 [thread overview]
Message-ID: <529E68F0.1090904@ti.com> (raw)
In-Reply-To: <1380082975-6022-1-git-send-email-milo.kim@ti.com>
Hello Guys,
Could you check this patchset?
Driver documentation was moved from 'Documentation' to
'drivers/mfd/lp3943.c'.
Thanks,
Milo
On 09/25/2013 01:22 PM, Milo Kim wrote:
> LP3943 is an integrated device capable of driving 16 output channels.
> It can be used for GPIO expander and PWM generators.
> LP3493 registers are controlled via the I2C interface.
>
> This patch-set consists of four parts - MFD, GPIO, PWM and documents.
>
> Update from v3 to v4:
> Move the driver description from the documentation to the MFD driver file.
>
> Milo Kim (4):
> mfd: add LP3943 MFD driver
> gpio: add LP3943 I2C GPIO expander driver
> pwm: add LP3943 PWM driver
> Documentation: add LP3943 DT bindings and document
>
> .../devicetree/bindings/gpio/gpio-lp3943.txt | 37 +++
> Documentation/devicetree/bindings/mfd/lp3943.txt | 33 ++
> .../devicetree/bindings/pwm/pwm-lp3943.txt | 58 ++++
> drivers/gpio/Kconfig | 8 +
> drivers/gpio/Makefile | 1 +
> drivers/gpio/gpio-lp3943.c | 242 +++++++++++++++
> drivers/mfd/Kconfig | 11 +
> drivers/mfd/Makefile | 1 +
> drivers/mfd/lp3943.c | 167 +++++++++++
> drivers/pwm/Kconfig | 10 +
> drivers/pwm/Makefile | 1 +
> drivers/pwm/pwm-lp3943.c | 314 ++++++++++++++++++++
> include/linux/mfd/lp3943.h | 114 +++++++
> 13 files changed, 997 insertions(+)
> create mode 100644 Documentation/devicetree/bindings/gpio/gpio-lp3943.txt
> create mode 100644 Documentation/devicetree/bindings/mfd/lp3943.txt
> create mode 100644 Documentation/devicetree/bindings/pwm/pwm-lp3943.txt
> create mode 100644 drivers/gpio/gpio-lp3943.c
> create mode 100644 drivers/mfd/lp3943.c
> create mode 100644 drivers/pwm/pwm-lp3943.c
> create mode 100644 include/linux/mfd/lp3943.h
>
WARNING: multiple messages have this Message-ID (diff)
From: Milo Kim <milo.kim@ti.com>
To: Lee Jones <lee.jones@linaro.org>, Samuel Ortiz <sameo@linux.intel.com>
Cc: Milo Kim <milo.kim@ti.com>,
Thierry Reding <thierry.reding@gmail.com>,
<linux-kernel@vger.kernel.org>, <devicetree@vger.kernel.org>,
<linux-pwm@vger.kernel.org>,
Linus Walleij <linus.walleij@linaro.org>
Subject: Re: [PATCH v4 0/4] LP3943 MFD driver for a GPIO expander and a PWM generator
Date: Wed, 4 Dec 2013 08:27:44 +0900 [thread overview]
Message-ID: <529E68F0.1090904@ti.com> (raw)
In-Reply-To: <1380082975-6022-1-git-send-email-milo.kim@ti.com>
Hello Guys,
Could you check this patchset?
Driver documentation was moved from 'Documentation' to
'drivers/mfd/lp3943.c'.
Thanks,
Milo
On 09/25/2013 01:22 PM, Milo Kim wrote:
> LP3943 is an integrated device capable of driving 16 output channels.
> It can be used for GPIO expander and PWM generators.
> LP3493 registers are controlled via the I2C interface.
>
> This patch-set consists of four parts - MFD, GPIO, PWM and documents.
>
> Update from v3 to v4:
> Move the driver description from the documentation to the MFD driver file.
>
> Milo Kim (4):
> mfd: add LP3943 MFD driver
> gpio: add LP3943 I2C GPIO expander driver
> pwm: add LP3943 PWM driver
> Documentation: add LP3943 DT bindings and document
>
> .../devicetree/bindings/gpio/gpio-lp3943.txt | 37 +++
> Documentation/devicetree/bindings/mfd/lp3943.txt | 33 ++
> .../devicetree/bindings/pwm/pwm-lp3943.txt | 58 ++++
> drivers/gpio/Kconfig | 8 +
> drivers/gpio/Makefile | 1 +
> drivers/gpio/gpio-lp3943.c | 242 +++++++++++++++
> drivers/mfd/Kconfig | 11 +
> drivers/mfd/Makefile | 1 +
> drivers/mfd/lp3943.c | 167 +++++++++++
> drivers/pwm/Kconfig | 10 +
> drivers/pwm/Makefile | 1 +
> drivers/pwm/pwm-lp3943.c | 314 ++++++++++++++++++++
> include/linux/mfd/lp3943.h | 114 +++++++
> 13 files changed, 997 insertions(+)
> create mode 100644 Documentation/devicetree/bindings/gpio/gpio-lp3943.txt
> create mode 100644 Documentation/devicetree/bindings/mfd/lp3943.txt
> create mode 100644 Documentation/devicetree/bindings/pwm/pwm-lp3943.txt
> create mode 100644 drivers/gpio/gpio-lp3943.c
> create mode 100644 drivers/mfd/lp3943.c
> create mode 100644 drivers/pwm/pwm-lp3943.c
> create mode 100644 include/linux/mfd/lp3943.h
>
next prev parent reply other threads:[~2013-12-03 23:27 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-09-25 4:22 [PATCH v4 0/4] LP3943 MFD driver for a GPIO expander and a PWM generator Milo Kim
2013-09-25 4:22 ` Milo Kim
2013-09-25 4:22 ` Milo Kim
2013-12-03 23:27 ` Milo Kim [this message]
2013-12-03 23:27 ` Milo Kim
2013-12-04 8:05 ` Lee Jones
2013-12-04 10:34 ` Thierry Reding
2013-12-04 10:50 ` Lee Jones
2013-12-05 21:43 ` Mark Brown
2013-12-06 13:24 ` Thierry Reding
2013-12-06 16:24 ` 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=529E68F0.1090904@ti.com \
--to=milo.kim@ti.com \
--cc=devicetree@vger.kernel.org \
--cc=lee.jones@linaro.org \
--cc=linus.walleij@linaro.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-pwm@vger.kernel.org \
--cc=sameo@linux.intel.com \
--cc=thierry.reding@gmail.com \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.