From: Stephen Boyd <sboyd@codeaurora.org>
To: David Brown <davidb@codeaurora.org>,
Daniel Walker <dwalker@fifo99.com>,
Bryan Huntsman <bryanh@codeaurora.org>
Cc: linux-kernel@vger.kernel.org, linux-arm-msm@vger.kernel.org,
linux-arm-kernel@lists.infradead.org,
Florian Tobias Schandinat <FlorianSchandinat@gmx.de>,
Grant Likely <grant.likely@secretlab.ca>,
Linus Walleij <linus.walleij@linaro.org>,
Rohit Vaswani <rvaswani@codeaurora.org>,
Chris Ball <cjb@laptop.org>
Subject: [PATCH 0/5] Trim down mach includes in MSM drivers
Date: Wed, 19 Sep 2012 00:00:39 -0700 [thread overview]
Message-ID: <1348038044-1790-1-git-send-email-sboyd@codeaurora.org> (raw)
This patch series trims the usage of mach includes in MSM
drivers. In particular it targets the msm_iomap.h header
file and completely removes the cpu.h header file. After
this series we only have one driver using the iomap.h file
outside of mach-msm. Once that driver is moved to be
a platform device we can make msm_iomap.h private to mach-msm.
This series is based on linux-next-20120917, which has the msm
DT timer patches (the other user of cpu.h in MSM).
Patches 2 and 3 can probably be routed the appropriate subsystem
trees if desired. It would be good if patch 1, 4, and 5 go
through the MSM tree, so it may be easier to just put all these
patches through the MSM tree.
Stephen Boyd (5):
ARM: msm: Move dma.h #defines that are private to dma.c
mmc: msm_sdcc: Remove unnecessary include
video: msm: Remove useless mach/* includes
gpio: Make gpio-msm-v1 into a platform driver
ARM: msm: Remove unused cpu.h header file
arch/arm/mach-msm/board-halibut.c | 1 +
arch/arm/mach-msm/board-msm7x30.c | 1 +
arch/arm/mach-msm/board-qsd8x50.c | 1 +
arch/arm/mach-msm/board-trout.c | 1 +
arch/arm/mach-msm/devices-msm7x00.c | 31 +++++
arch/arm/mach-msm/devices-msm7x30.c | 31 +++++
arch/arm/mach-msm/devices-qsd8x50.c | 31 +++++
arch/arm/mach-msm/devices.h | 4 +
arch/arm/mach-msm/dma.c | 26 +++++
arch/arm/mach-msm/include/mach/cpu.h | 54 ---------
arch/arm/mach-msm/include/mach/dma.h | 26 -----
drivers/gpio/gpio-msm-v1.c | 220 ++++++++++++++++++++++++-----------
drivers/mmc/host/msm_sdcc.c | 1 -
drivers/video/msm/mddi.c | 3 -
drivers/video/msm/mdp.c | 1 -
drivers/video/msm/mdp_hw.h | 1 -
16 files changed, 276 insertions(+), 157 deletions(-)
delete mode 100644 arch/arm/mach-msm/include/mach/cpu.h
--
The Qualcomm Innovation Center, Inc. is a member of the Code Aurora Forum,
hosted by The Linux Foundation
WARNING: multiple messages have this Message-ID (diff)
From: sboyd@codeaurora.org (Stephen Boyd)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH 0/5] Trim down mach includes in MSM drivers
Date: Wed, 19 Sep 2012 00:00:39 -0700 [thread overview]
Message-ID: <1348038044-1790-1-git-send-email-sboyd@codeaurora.org> (raw)
This patch series trims the usage of mach includes in MSM
drivers. In particular it targets the msm_iomap.h header
file and completely removes the cpu.h header file. After
this series we only have one driver using the iomap.h file
outside of mach-msm. Once that driver is moved to be
a platform device we can make msm_iomap.h private to mach-msm.
This series is based on linux-next-20120917, which has the msm
DT timer patches (the other user of cpu.h in MSM).
Patches 2 and 3 can probably be routed the appropriate subsystem
trees if desired. It would be good if patch 1, 4, and 5 go
through the MSM tree, so it may be easier to just put all these
patches through the MSM tree.
Stephen Boyd (5):
ARM: msm: Move dma.h #defines that are private to dma.c
mmc: msm_sdcc: Remove unnecessary include
video: msm: Remove useless mach/* includes
gpio: Make gpio-msm-v1 into a platform driver
ARM: msm: Remove unused cpu.h header file
arch/arm/mach-msm/board-halibut.c | 1 +
arch/arm/mach-msm/board-msm7x30.c | 1 +
arch/arm/mach-msm/board-qsd8x50.c | 1 +
arch/arm/mach-msm/board-trout.c | 1 +
arch/arm/mach-msm/devices-msm7x00.c | 31 +++++
arch/arm/mach-msm/devices-msm7x30.c | 31 +++++
arch/arm/mach-msm/devices-qsd8x50.c | 31 +++++
arch/arm/mach-msm/devices.h | 4 +
arch/arm/mach-msm/dma.c | 26 +++++
arch/arm/mach-msm/include/mach/cpu.h | 54 ---------
arch/arm/mach-msm/include/mach/dma.h | 26 -----
drivers/gpio/gpio-msm-v1.c | 220 ++++++++++++++++++++++++-----------
drivers/mmc/host/msm_sdcc.c | 1 -
drivers/video/msm/mddi.c | 3 -
drivers/video/msm/mdp.c | 1 -
drivers/video/msm/mdp_hw.h | 1 -
16 files changed, 276 insertions(+), 157 deletions(-)
delete mode 100644 arch/arm/mach-msm/include/mach/cpu.h
--
The Qualcomm Innovation Center, Inc. is a member of the Code Aurora Forum,
hosted by The Linux Foundation
next reply other threads:[~2012-09-19 7:00 UTC|newest]
Thread overview: 24+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-09-19 7:00 Stephen Boyd [this message]
2012-09-19 7:00 ` [PATCH 0/5] Trim down mach includes in MSM drivers Stephen Boyd
2012-09-19 7:00 ` [PATCH 1/5] ARM: msm: Move dma.h #defines that are private to dma.c Stephen Boyd
2012-09-19 7:00 ` Stephen Boyd
2012-09-19 7:00 ` Stephen Boyd
2012-09-19 7:00 ` [PATCH 2/5] mmc: msm_sdcc: Remove unnecessary include Stephen Boyd
2012-09-19 7:00 ` Stephen Boyd
2012-09-19 7:21 ` Chris Ball
2012-09-19 7:21 ` Chris Ball
2012-09-19 7:00 ` [PATCH 3/5] video: msm: Remove useless mach/* includes Stephen Boyd
2012-09-19 7:00 ` Stephen Boyd
2012-09-23 19:52 ` Florian Tobias Schandinat
2012-09-23 19:52 ` Florian Tobias Schandinat
2012-09-19 7:00 ` [PATCH 4/5] gpio: Make gpio-msm-v1 into a platform driver Stephen Boyd
2012-09-19 7:00 ` Stephen Boyd
2012-09-20 6:45 ` Linus Walleij
2012-09-20 6:45 ` Linus Walleij
2012-09-20 16:08 ` David Brown
2012-09-20 16:08 ` David Brown
2012-09-20 20:14 ` Rohit Vaswani
2012-09-20 20:14 ` Rohit Vaswani
2012-09-19 7:00 ` [PATCH 5/5] ARM: msm: Remove unused cpu.h header file Stephen Boyd
2012-09-19 7:00 ` Stephen Boyd
2012-09-19 7:00 ` Stephen Boyd
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=1348038044-1790-1-git-send-email-sboyd@codeaurora.org \
--to=sboyd@codeaurora.org \
--cc=FlorianSchandinat@gmx.de \
--cc=bryanh@codeaurora.org \
--cc=cjb@laptop.org \
--cc=davidb@codeaurora.org \
--cc=dwalker@fifo99.com \
--cc=grant.likely@secretlab.ca \
--cc=linus.walleij@linaro.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-arm-msm@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=rvaswani@codeaurora.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.