From: Lee Jones <lee.jones@linaro.org>
To: Octavian Purdila <octavian.purdila@intel.com>
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
Linus Walleij <linus.walleij@linaro.org>,
Alexandre Courbot <gnurou@gmail.com>,
Wolfram Sang <wsa@the-dreams.de>,
Samuel Ortiz <sameo@linux.intel.com>,
Arnd Bergmann <arnd@arndb.de>, Johan Hovold <johan@kernel.org>,
Daniel Baluta <daniel.baluta@intel.com>,
Laurentiu Palcu <laurentiu.palcu@intel.com>,
"linux-usb@vger.kernel.org" <linux-usb@vger.kernel.org>,
lkml <linux-kernel@vger.kernel.org>,
"linux-gpio@vger.kernel.org" <linux-gpio@vger.kernel.org>,
linux-i2c <linux-i2c@vger.kernel.org>
Subject: Re: [PATCH v11 0/3] add support for Diolan DLN-2
Date: Mon, 10 Nov 2014 16:03:51 +0000 [thread overview]
Message-ID: <20141110160351.GJ24004@x1> (raw)
In-Reply-To: <CAE1zotLmLMLm=3HMmL55TXWf4frCryWCLGnhEUw8f9H+GpY4tA@mail.gmail.com>
On Mon, 10 Nov 2014, Octavian Purdila wrote:
> On Mon, Nov 10, 2014 at 5:10 PM, Lee Jones <lee.jones@linaro.org> wrote:
> > Linus, Wolfram,
> >
> > Enjoy!
> >
> > The following changes since commit f114040e3ea6e07372334ade75d1ee0775c355e1:
> >
> > Linux 3.18-rc1 (2014-10-19 18:08:38 -0700)
> >
> > are available in the git repository at:
> >
> > git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git tags/ib-mfd-gpio-i2c-v3.19
>
> Hi Lee,
>
> Not sure if this matter, but this tree seems to miss the
> mfd_add_hotplug_devices patches from Johan, which are needed by the
> patches below.
Yes, that will definitely matter.
> > for you to fetch changes up to e7d146b11a8a33b6033220b0f4fc4de2ab29218a:
> >
> > gpio: add support for the Diolan DLN-2 USB GPIO driver (2014-11-10 15:05:49 +0000)
> >
> > ----------------------------------------------------------------
> > Immutable branch between MFD, GPIO and I2C
> >
> > ----------------------------------------------------------------
> > Daniel Baluta (1):
> > gpio: add support for the Diolan DLN-2 USB GPIO driver
> >
> > Laurentiu Palcu (1):
> > i2c: add support for Diolan DLN-2 USB-I2C adapter
> >
> > Octavian Purdila (1):
> > mfd: Add support for Diolan DLN-2 devices
> >
> > drivers/gpio/Kconfig | 12 +
> > drivers/gpio/Makefile | 1 +
> > drivers/gpio/gpio-dln2.c | 553 ++++++++++++++++++++++++++++++
> > drivers/i2c/busses/Kconfig | 10 +
> > drivers/i2c/busses/Makefile | 1 +
> > drivers/i2c/busses/i2c-dln2.c | 267 +++++++++++++++
> > drivers/mfd/Kconfig | 10 +
> > drivers/mfd/Makefile | 1 +
> > drivers/mfd/dln2.c | 763 ++++++++++++++++++++++++++++++++++++++++++
> > include/linux/mfd/dln2.h | 103 ++++++
> > 10 files changed, 1721 insertions(+)
> > create mode 100644 drivers/gpio/gpio-dln2.c
> > create mode 100644 drivers/i2c/busses/i2c-dln2.c
> > create mode 100644 drivers/mfd/dln2.c
> > create mode 100644 include/linux/mfd/dln2.h
> >
--
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:[~2014-11-10 16:04 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-11-06 13:48 [PATCH v11 0/3] add support for Diolan DLN-2 Octavian Purdila
2014-11-06 13:48 ` [PATCH v11 1/3] mfd: add support for Diolan DLN-2 devices Octavian Purdila
2014-11-10 12:57 ` Lee Jones
2014-11-06 13:48 ` [PATCH v11 2/3] i2c: add support for Diolan DLN-2 USB-I2C adapter Octavian Purdila
2014-11-06 13:48 ` [PATCH v11 3/3] gpio: add support for the Diolan DLN-2 USB GPIO driver Octavian Purdila
2014-11-10 15:10 ` [PATCH v11 0/3] add support for Diolan DLN-2 Lee Jones
2014-11-10 15:37 ` Octavian Purdila
2014-11-10 16:03 ` Lee Jones [this message]
2014-11-10 15:12 ` [GIT PULL] Immutable branch between MFD, GPIO and I2C Lee Jones
2014-11-10 16:04 ` Lee Jones
2014-11-10 17:43 ` Lee Jones
2014-11-14 10:05 ` Linus Walleij
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=20141110160351.GJ24004@x1 \
--to=lee.jones@linaro.org \
--cc=arnd@arndb.de \
--cc=daniel.baluta@intel.com \
--cc=gnurou@gmail.com \
--cc=gregkh@linuxfoundation.org \
--cc=johan@kernel.org \
--cc=laurentiu.palcu@intel.com \
--cc=linus.walleij@linaro.org \
--cc=linux-gpio@vger.kernel.org \
--cc=linux-i2c@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-usb@vger.kernel.org \
--cc=octavian.purdila@intel.com \
--cc=sameo@linux.intel.com \
--cc=wsa@the-dreams.de \
/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