From: Lee Jones <lee.jones-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org>
To: Milo Kim <milo.kim-l0cyMroinI0@public.gmane.org>
Cc: Samuel Ortiz <sameo-VuQAYsv1563Yd54FQh9/CA@public.gmane.org>,
Thierry Reding
<thierry.reding-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>,
linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
devicetree-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
linux-pwm-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
Linus Walleij
<linus.walleij-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org>
Subject: Re: [PATCH RESEND v5 0/4] LP3943 MFD driver for a GPIO expander and a PWM generator
Date: Fri, 6 Dec 2013 09:09:15 +0000 [thread overview]
Message-ID: <20131206090915.GA12491@lee--X1> (raw)
In-Reply-To: <1386296324-23039-1-git-send-email-milo.kim-l0cyMroinI0@public.gmane.org>
On Fri, 06 Dec 2013, 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 v4 to v5:
> Add Thierry's ACK for the PWM driver and the DT documentation
>
> 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
Patch-set applied, thanks Milo.
--
Lee Jones
Linaro STMicroelectronics Landing Team Lead
Linaro.org │ Open source software for ARM SoCs
Follow Linaro: Facebook | Twitter | Blog
--
To unsubscribe from this list: send the line "unsubscribe devicetree" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
WARNING: multiple messages have this Message-ID (diff)
From: Lee Jones <lee.jones@linaro.org>
To: Milo Kim <milo.kim@ti.com>
Cc: Samuel Ortiz <sameo@linux.intel.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 RESEND v5 0/4] LP3943 MFD driver for a GPIO expander and a PWM generator
Date: Fri, 6 Dec 2013 09:09:15 +0000 [thread overview]
Message-ID: <20131206090915.GA12491@lee--X1> (raw)
In-Reply-To: <1386296324-23039-1-git-send-email-milo.kim@ti.com>
On Fri, 06 Dec 2013, 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 v4 to v5:
> Add Thierry's ACK for the PWM driver and the DT documentation
>
> 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
Patch-set applied, thanks Milo.
--
Lee Jones
Linaro STMicroelectronics Landing Team Lead
Linaro.org │ Open source software for ARM SoCs
Follow Linaro: Facebook | Twitter | Blog
next prev parent reply other threads:[~2013-12-06 9:09 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-12-06 2:18 [PATCH RESEND v5 0/4] LP3943 MFD driver for a GPIO expander and a PWM generator Milo Kim
2013-12-06 2:18 ` Milo Kim
2013-12-06 2:18 ` [PATCH RESEND v5 1/4] mfd: add LP3943 MFD driver Milo Kim
2013-12-06 2:18 ` Milo Kim
2013-12-06 2:18 ` [PATCH RESEND v5 2/4] gpio: add LP3943 I2C GPIO expander driver Milo Kim
2013-12-06 2:18 ` Milo Kim
2013-12-06 2:18 ` [PATCH RESEND v5 3/4] pwm: add LP3943 PWM driver Milo Kim
2013-12-06 2:18 ` Milo Kim
2013-12-06 2:18 ` [PATCH RESEND v5 4/4] Documentation: add LP3943 DT bindings and document Milo Kim
2013-12-06 2:18 ` Milo Kim
[not found] ` <1386296324-23039-1-git-send-email-milo.kim-l0cyMroinI0@public.gmane.org>
2013-12-06 9:09 ` Lee Jones [this message]
2013-12-06 9:09 ` [PATCH RESEND v5 0/4] LP3943 MFD driver for a GPIO expander and a PWM generator 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=20131206090915.GA12491@lee--X1 \
--to=lee.jones-qsej5fyqhm4dnm+yrofe0a@public.gmane.org \
--cc=devicetree-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
--cc=linus.walleij-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org \
--cc=linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
--cc=linux-pwm-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
--cc=milo.kim-l0cyMroinI0@public.gmane.org \
--cc=sameo-VuQAYsv1563Yd54FQh9/CA@public.gmane.org \
--cc=thierry.reding-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.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 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.