From: Linus Walleij <linus.walleij@linaro.org>
To: linux-gpio@vger.kernel.org, linux-arm-kernel@lists.infradead.org
Cc: Alexandre Courbot <acourbot@nvidia.com>,
Linus Walleij <linus.walleij@linaro.org>
Subject: [PATCH 0/4] <mach/gpio.h> purge
Date: Wed, 4 Jun 2014 15:33:54 +0200 [thread overview]
Message-ID: <1401888838-3126-1-git-send-email-linus.walleij@linaro.org> (raw)
After deleting <mach/gpio.h> from the AT91 only S5P remains.
This patch set fixes up S5P and then removes NEED_MACH_GPIO_H
permanently removing any references to <mach/gpio.h> from the
ARM kernel. Do a small cleanout of a dangling reference to
ARM_GPIOLIB_COMPLEX at the same time.
Linus Walleij (4):
ARM: s5p: cut the custom ARCH_NR_GPIOS definition
ARM: mach-s5p: get rid of all <mach/gpio.h> headers
ARM: kill CONFIG_NEED_MACH_GPIO_H
ARM: delete old reference to ARM_GPIOLIB_COMPLEX
arch/arm/Kconfig | 10 --
arch/arm/include/asm/gpio.h | 7 --
arch/arm/mach-s5p64x0/common.c | 2 +-
arch/arm/mach-s5p64x0/dev-audio.c | 3 +-
arch/arm/mach-s5p64x0/include/mach/gpio-samsung.h | 127 +++++++++++++++++++
arch/arm/mach-s5p64x0/include/mach/gpio.h | 132 --------------------
arch/arm/mach-s5p64x0/mach-smdk6440.c | 1 +
arch/arm/mach-s5p64x0/mach-smdk6450.c | 1 +
arch/arm/mach-s5p64x0/setup-fb-24bpp.c | 2 +-
arch/arm/mach-s5p64x0/setup-i2c0.c | 2 +-
arch/arm/mach-s5p64x0/setup-i2c1.c | 2 +-
arch/arm/mach-s5p64x0/setup-sdhci-gpio.c | 2 +-
arch/arm/mach-s5p64x0/setup-spi.c | 2 +-
arch/arm/mach-s5pc100/dev-audio.c | 2 +-
arch/arm/mach-s5pc100/include/mach/gpio-samsung.h | 140 +++++++++++++++++++++
arch/arm/mach-s5pc100/include/mach/gpio.h | 144 ----------------------
arch/arm/mach-s5pc100/mach-smdkc100.c | 1 +
arch/arm/mach-s5pc100/setup-fb-24bpp.c | 2 +-
arch/arm/mach-s5pc100/setup-i2c0.c | 2 +-
arch/arm/mach-s5pc100/setup-i2c1.c | 2 +-
arch/arm/mach-s5pc100/setup-ide.c | 2 +-
arch/arm/mach-s5pc100/setup-keypad.c | 2 +-
arch/arm/mach-s5pc100/setup-sdhci-gpio.c | 2 +-
arch/arm/mach-s5pc100/setup-spi.c | 2 +-
arch/arm/mach-s5pv210/dev-audio.c | 2 +-
arch/arm/mach-s5pv210/include/mach/gpio-samsung.h | 135 ++++++++++++++++++++
arch/arm/mach-s5pv210/include/mach/gpio.h | 140 ---------------------
arch/arm/mach-s5pv210/mach-aquila.c | 1 +
arch/arm/mach-s5pv210/mach-goni.c | 1 +
arch/arm/mach-s5pv210/mach-smdkv210.c | 1 +
arch/arm/mach-s5pv210/setup-fb-24bpp.c | 2 +-
arch/arm/mach-s5pv210/setup-fimc.c | 3 +-
arch/arm/mach-s5pv210/setup-i2c0.c | 2 +-
arch/arm/mach-s5pv210/setup-i2c1.c | 2 +-
arch/arm/mach-s5pv210/setup-i2c2.c | 2 +-
arch/arm/mach-s5pv210/setup-ide.c | 2 +-
arch/arm/mach-s5pv210/setup-keypad.c | 2 +-
arch/arm/mach-s5pv210/setup-sdhci-gpio.c | 2 +-
arch/arm/mach-s5pv210/setup-spi.c | 2 +-
arch/arm/plat-samsung/Kconfig | 16 ---
arch/arm/plat-samsung/include/plat/gpio-core.h | 3 +
arch/arm/plat-samsung/pm-gpio.c | 2 -
arch/arm/plat-samsung/s5p-irq-eint.c | 2 +-
drivers/gpio/gpio-samsung.c | 3 -
sound/soc/samsung/goni_wm8994.c | 2 +-
45 files changed, 440 insertions(+), 481 deletions(-)
create mode 100644 arch/arm/mach-s5p64x0/include/mach/gpio-samsung.h
delete mode 100644 arch/arm/mach-s5p64x0/include/mach/gpio.h
create mode 100644 arch/arm/mach-s5pc100/include/mach/gpio-samsung.h
delete mode 100644 arch/arm/mach-s5pc100/include/mach/gpio.h
create mode 100644 arch/arm/mach-s5pv210/include/mach/gpio-samsung.h
delete mode 100644 arch/arm/mach-s5pv210/include/mach/gpio.h
--
1.9.3
next reply other threads:[~2014-06-04 13:34 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-06-04 13:33 Linus Walleij [this message]
2014-06-04 13:33 ` [PATCH 1/4] ARM: s5p: cut the custom ARCH_NR_GPIOS definition Linus Walleij
2014-06-04 13:33 ` [PATCH 2/4] ARM: mach-s5p: get rid of all <mach/gpio.h> headers Linus Walleij
2014-06-04 13:58 ` Arnd Bergmann
2014-06-06 6:50 ` Arnd Bergmann
2014-06-09 11:36 ` Linus Walleij
2014-06-09 12:11 ` Arnd Bergmann
2014-06-04 13:33 ` [PATCH 3/4] ARM: kill CONFIG_NEED_MACH_GPIO_H Linus Walleij
2014-06-04 13:33 ` [PATCH 4/4] ARM: delete old reference to ARM_GPIOLIB_COMPLEX Linus Walleij
2014-06-04 17:23 ` [PATCH 0/4] <mach/gpio.h> purge Rob Herring
2014-06-06 5:10 ` Alexandre Courbot
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=1401888838-3126-1-git-send-email-linus.walleij@linaro.org \
--to=linus.walleij@linaro.org \
--cc=acourbot@nvidia.com \
--cc=linux-arm-kernel@lists.infradead.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).