linux-gpio.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: <kamlakant.patel@linaro.org>
To: Linus Walleij <linus.walleij@linaro.org>,
	Alexandre Courbot <gnurou@gmail.com>
Cc: Kamlakant Patel <kamlakant.patel@linaro.org>, linux-gpio@vger.kernel.org
Subject: [RTF] [PATCH 00/26] gpio: use platform based module init
Date: Tue, 9 Sep 2014 15:59:25 +0530	[thread overview]
Message-ID: <1410258591-28248-1-git-send-email-kamlakant.patel@linaro.org> (raw)

From: Kamlakant Patel <kamlakant.patel@linaro.org>

This patch removes *_initcall based driver initialization
and adds regular module_platform_driver to instantiate
GPIO drivers which makes the code smaller and simpler.

NOTE: This patch needs to be tested on different platforms.

Kamlakant Patel (26):
  gpio: em: use platform based module init
  gpio: ep93xx: use platform based module init
  gpio: iop: use platform based module init
  gpio: msm-v1: use platform based module init
  gpio: mxc: use platform based module init
  gpio: mxs: use platform based module init
  gpio: palmas: use platform based module init
  gpio: SPEAr: use platform based module init
  gpio: stmpe: use platform based module init
  gpio: tc3589x: use platform based module init
  gpio: tps6586x: use platform based module init
  gpio: tps65910: use platform based module init
  gpio: use platform based module init
  gpio: twl4030: use platform based module init
  gpio: wm831x: use platform based module init
  gpio: wm8350: use platform based module init
  gpio: wm8994: use platform based module init
  gpio: zynq: use platform based module init
  gpio: da9055: use platform based module init
  gpio: lynxpoint: use platform based module init
  gpio: lantiq: use platform based module init
  gpio: msic: use platform based module init
  gpio: rc5t583: use platform based module init
  gpio: xway: use platform based module init
  gpio: tz1090-pdc: use platform based module init
  gpio: tz1090: use platform based module init

 drivers/gpio/gpio-da9055.c      | 13 +------------
 drivers/gpio/gpio-em.c          | 13 +------------
 drivers/gpio/gpio-ep93xx.c      |  7 +------
 drivers/gpio/gpio-iop.c         |  7 +------
 drivers/gpio/gpio-lynxpoint.c   | 14 +-------------
 drivers/gpio/gpio-mm-lantiq.c   |  8 +-------
 drivers/gpio/gpio-msic.c        |  8 +-------
 drivers/gpio/gpio-msm-v1.c      |  6 +-----
 drivers/gpio/gpio-mxc.c         |  7 +------
 drivers/gpio/gpio-mxs.c         |  6 +-----
 drivers/gpio/gpio-palmas.c      | 13 +------------
 drivers/gpio/gpio-rc5t583.c     | 13 +------------
 drivers/gpio/gpio-spear-spics.c |  7 +------
 drivers/gpio/gpio-stmpe.c       | 13 +------------
 drivers/gpio/gpio-stp-xway.c    |  8 +-------
 drivers/gpio/gpio-tc3589x.c     | 13 +------------
 drivers/gpio/gpio-tps6586x.c    | 13 +------------
 drivers/gpio/gpio-tps65910.c    | 13 +------------
 drivers/gpio/gpio-tps65912.c    | 13 +------------
 drivers/gpio/gpio-twl4030.c     | 13 +------------
 drivers/gpio/gpio-tz1090-pdc.c  |  7 +------
 drivers/gpio/gpio-tz1090.c      |  7 +------
 drivers/gpio/gpio-wm831x.c      | 13 +------------
 drivers/gpio/gpio-wm8350.c      | 13 +------------
 drivers/gpio/gpio-wm8994.c      | 13 +------------
 drivers/gpio/gpio-zynq.c        | 12 +-----------
 26 files changed, 26 insertions(+), 247 deletions(-)

-- 
1.9.1


             reply	other threads:[~2014-09-09 10:29 UTC|newest]

Thread overview: 29+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-09-09 10:29 kamlakant.patel [this message]
2014-09-09 10:29 ` [RTF] [PATCH 01/26] gpio: em: use platform based module init kamlakant.patel
2014-09-09 10:29 ` [RTF] [PATCH 02/26] gpio: ep93xx: " kamlakant.patel
2014-09-09 10:29 ` [RTF] [PATCH 03/26] gpio: iop: " kamlakant.patel
2014-09-09 10:29 ` [RTF] [PATCH 04/26] gpio: msm-v1: " kamlakant.patel
2014-09-09 10:29 ` [RTF] [PATCH 05/26] gpio: mxc: " kamlakant.patel
2014-09-09 10:29 ` [RTF] [PATCH 06/26] gpio: mxs: " kamlakant.patel
2014-09-09 10:29 ` [RTF] [PATCH 07/26] gpio: palmas: " kamlakant.patel
2014-09-09 10:29 ` [RTF] [PATCH 08/26] gpio: SPEAr: " kamlakant.patel
2014-09-09 10:29 ` [RTF] [PATCH 09/26] gpio: stmpe: " kamlakant.patel
2014-09-09 10:29 ` [RTF] [PATCH 10/26] gpio: tc3589x: " kamlakant.patel
2014-09-09 10:29 ` [RTF] [PATCH 11/26] gpio: tps6586x: " kamlakant.patel
2014-09-09 10:29 ` [RTF] [PATCH 12/26] gpio: tps65910: " kamlakant.patel
2014-09-09 10:29 ` [RTF] [PATCH 13/26] gpio: " kamlakant.patel
2014-09-09 10:29 ` [RTF] [PATCH 14/26] gpio: twl4030: " kamlakant.patel
2014-09-09 10:29 ` [RTF] [PATCH 15/26] gpio: wm831x: " kamlakant.patel
2014-09-09 10:29 ` [RTF] [PATCH 16/26] gpio: wm8350: " kamlakant.patel
2014-09-09 10:29 ` [RTF] [PATCH 17/26] gpio: wm8994: " kamlakant.patel
2014-09-09 10:29 ` [RTF] [PATCH 18/26] gpio: zynq: " kamlakant.patel
2014-09-09 10:29 ` [RTF] [PATCH 19/26] gpio: da9055: " kamlakant.patel
2014-09-09 10:29 ` [RTF] [PATCH 20/26] gpio: lynxpoint: " kamlakant.patel
2014-09-09 10:29 ` [RTF] [PATCH 21/26] gpio: lantiq: " kamlakant.patel
2014-09-09 10:29 ` [RTF] [PATCH 22/26] gpio: msic: " kamlakant.patel
2014-09-09 10:29 ` [RTF] [PATCH 23/26] gpio: rc5t583: " kamlakant.patel
2014-09-09 10:29 ` [RTF] [PATCH 24/26] gpio: xway: " kamlakant.patel
2014-09-09 10:29 ` [RTF] [PATCH 25/26] gpio: tz1090-pdc: " kamlakant.patel
2014-09-09 10:29 ` [RTF] [PATCH 26/26] gpio: tz1090: " kamlakant.patel
2014-09-19  8:36 ` [RTF] [PATCH 00/26] gpio: " Alexandre Courbot
2014-09-24  8:03   ` 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=1410258591-28248-1-git-send-email-kamlakant.patel@linaro.org \
    --to=kamlakant.patel@linaro.org \
    --cc=gnurou@gmail.com \
    --cc=linus.walleij@linaro.org \
    --cc=linux-gpio@vger.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).