linux-gpio.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Lee Jones <lee.jones-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org>
To: Octavian Purdila
	<octavian.purdila-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
Cc: Greg Kroah-Hartman
	<gregkh-hQyY1W1yCW8ekmWlsbkhG0B+6BGkLq7r@public.gmane.org>,
	Linus Walleij
	<linus.walleij-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org>,
	Alexandre Courbot
	<gnurou-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>,
	Wolfram Sang <wsa-z923LK4zBo2bacvFa/9K2g@public.gmane.org>,
	Samuel Ortiz <sameo-VuQAYsv1563Yd54FQh9/CA@public.gmane.org>,
	Arnd Bergmann <arnd-r2nGTMty4D4@public.gmane.org>,
	Johan Hovold <johan-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org>,
	Daniel Baluta
	<daniel.baluta-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>,
	Laurentiu Palcu
	<laurentiu.palcu-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>,
	"linux-usb-u79uwXL29TY76Z2rM5mHXA@public.gmane.org"
	<linux-usb-u79uwXL29TY76Z2rM5mHXA@public.gmane.org>,
	lkml <linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org>,
	"linux-gpio-u79uwXL29TY76Z2rM5mHXA@public.gmane.org"
	<linux-gpio-u79uwXL29TY76Z2rM5mHXA@public.gmane.org>,
	linux-i2c <linux-i2c-u79uwXL29TY76Z2rM5mHXA@public.gmane.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-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>

On Mon, 10 Nov 2014, Octavian Purdila wrote:

> On Mon, Nov 10, 2014 at 5:10 PM, Lee Jones <lee.jones-QSEj5FYQhm4dnm+yROfE0A@public.gmane.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

  parent reply	other threads:[~2014-11-10 16:03 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
     [not found] ` <1415281685-14866-1-git-send-email-octavian.purdila-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
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
     [not found]     ` <CAE1zotLmLMLm=3HMmL55TXWf4frCryWCLGnhEUw8f9H+GpY4tA-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
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-qsej5fyqhm4dnm+yrofe0a@public.gmane.org \
    --cc=arnd-r2nGTMty4D4@public.gmane.org \
    --cc=daniel.baluta-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org \
    --cc=gnurou-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org \
    --cc=gregkh-hQyY1W1yCW8ekmWlsbkhG0B+6BGkLq7r@public.gmane.org \
    --cc=johan-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org \
    --cc=laurentiu.palcu-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org \
    --cc=linus.walleij-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org \
    --cc=linux-gpio-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
    --cc=linux-i2c-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
    --cc=linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
    --cc=linux-usb-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
    --cc=octavian.purdila-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org \
    --cc=sameo-VuQAYsv1563Yd54FQh9/CA@public.gmane.org \
    --cc=wsa-z923LK4zBo2bacvFa/9K2g@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 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).