* [GIT PULL] mvebu irqchip for v3.10
@ 2013-04-15 19:52 Jason Cooper
2013-04-18 6:42 ` Olof Johansson
0 siblings, 1 reply; 4+ messages in thread
From: Jason Cooper @ 2013-04-15 19:52 UTC (permalink / raw)
To: linux-arm-kernel
The following changes since commit 31880c37c11e28cb81c70757e38392b42e695dc6:
Linux 3.9-rc6 (2013-04-07 20:49:54 -0700)
are available in the git repository at:
git://git.infradead.org/users/jcooper/linux.git tags/irqchip-3.10
for you to fetch changes up to 5ec69017cc944f3ed88362d4b60818713a45e616:
irqchip: armada-370-xp: slightly cleanup irq controller driver (2013-04-15 19:35:17 +0000)
----------------------------------------------------------------
mvebu driver irqchip for v3.10
- move the armada irqchip driver to drivers/irqchip/
Note:
- I asked tglx if it was ok to take this series on 10 Apr due to it's complex
dependencies. 5+ days have passed with no objection.
- I put this driver in a separate mvebu branch in case tglx or others object,
it can be dropped with minimal impact to other work.
----------------------------------------------------------------
Thomas Petazzoni (4):
ARM: mvebu: move L2 cache initialization in init_early()
irqchip: move IRQ driver for Armada 370/XP
irqchip: armada-370-xp: move IRQ handler to avoid forward declaration
irqchip: armada-370-xp: slightly cleanup irq controller driver
arch/arm/mach-mvebu/Makefile | 2 +-
arch/arm/mach-mvebu/armada-370-xp.c | 9 +-
drivers/irqchip/Makefile | 1 +
.../irqchip}/irq-armada-370-xp.c | 106 ++++++++++-----------
4 files changed, 60 insertions(+), 58 deletions(-)
rename {arch/arm/mach-mvebu => drivers/irqchip}/irq-armada-370-xp.c (91%)
^ permalink raw reply [flat|nested] 4+ messages in thread* [GIT PULL] mvebu irqchip for v3.10 2013-04-15 19:52 [GIT PULL] mvebu irqchip for v3.10 Jason Cooper @ 2013-04-18 6:42 ` Olof Johansson 2013-04-18 9:47 ` Thomas Petazzoni 0 siblings, 1 reply; 4+ messages in thread From: Olof Johansson @ 2013-04-18 6:42 UTC (permalink / raw) To: linux-arm-kernel On Mon, Apr 15, 2013 at 03:52:45PM -0400, Jason Cooper wrote: > > The following changes since commit 31880c37c11e28cb81c70757e38392b42e695dc6: > > Linux 3.9-rc6 (2013-04-07 20:49:54 -0700) > > are available in the git repository at: > > git://git.infradead.org/users/jcooper/linux.git tags/irqchip-3.10 > > for you to fetch changes up to 5ec69017cc944f3ed88362d4b60818713a45e616: > > irqchip: armada-370-xp: slightly cleanup irq controller driver (2013-04-15 19:35:17 +0000) > > ---------------------------------------------------------------- > mvebu driver irqchip for v3.10 > > - move the armada irqchip driver to drivers/irqchip/ > > Note: > - I asked tglx if it was ok to take this series on 10 Apr due to it's complex > dependencies. 5+ days have passed with no objection. > - I put this driver in a separate mvebu branch in case tglx or others object, > it can be dropped with minimal impact to other work. Hi, These notes are useful to include in the pull request, but not in the git tag -- they don't really hold much permanent value. This branch also seems to have a few internal conflicts on mbus changes. Not a big deal, I fixed it up, but you might as well have based this on the other branch as well. Merged as a late/cleanup branch. -Olof ^ permalink raw reply [flat|nested] 4+ messages in thread
* [GIT PULL] mvebu irqchip for v3.10 2013-04-18 6:42 ` Olof Johansson @ 2013-04-18 9:47 ` Thomas Petazzoni 2013-04-18 15:46 ` Olof Johansson 0 siblings, 1 reply; 4+ messages in thread From: Thomas Petazzoni @ 2013-04-18 9:47 UTC (permalink / raw) To: linux-arm-kernel Olof, Jason, On Wed, 17 Apr 2013 23:42:17 -0700, Olof Johansson wrote: > > The following changes since commit > > 31880c37c11e28cb81c70757e38392b42e695dc6: > > > > Linux 3.9-rc6 (2013-04-07 20:49:54 -0700) > > > > are available in the git repository at: > > > > git://git.infradead.org/users/jcooper/linux.git tags/irqchip-3.10 > > > > for you to fetch changes up to > > 5ec69017cc944f3ed88362d4b60818713a45e616: > > > > irqchip: armada-370-xp: slightly cleanup irq controller driver > > (2013-04-15 19:35:17 +0000) > > > > ---------------------------------------------------------------- > > mvebu driver irqchip for v3.10 > > > > - move the armada irqchip driver to drivers/irqchip/ > > > > Note: > > - I asked tglx if it was ok to take this series on 10 Apr due to > > it's complex dependencies. 5+ days have passed with no objection. > > - I put this driver in a separate mvebu branch in case tglx or > > others object, it can be dropped with minimal impact to other work. > > > Hi, > > These notes are useful to include in the pull request, but not in the > git tag -- they don't really hold much permanent value. > > This branch also seems to have a few internal conflicts on mbus > changes. Not a big deal, I fixed it up, but you might as well have > based this on the other branch as well. > > Merged as a late/cleanup branch. I just tested arm-soc/for-next, and it seems like there was a merge conflict that was not properly resolved. The arch/arm/mach-mvebu/Makefile still references irq-armada-370-xp.c, even though it has been moved to drivers/irqchip/ as per the pull request of this e-mail. The fix is: diff --git a/arch/arm/mach-mvebu/Makefile b/arch/arm/mach-mvebu/Makefile index ca3b43f..90be143 100644 --- a/arch/arm/mach-mvebu/Makefile +++ b/arch/arm/mach-mvebu/Makefile @@ -6,6 +6,6 @@ AFLAGS_coherency_ll.o := -Wa,-march=armv7-a obj-y += system-controller.o obj-$(CONFIG_MACH_ARMADA_370_XP) += armada-370-xp.o obj-$(CONFIG_ARCH_MVEBU) += coherency.o coherency_ll.o -obj-$(CONFIG_ARCH_MVEBU) += pmsu.o irq-armada-370-xp.o +obj-$(CONFIG_ARCH_MVEBU) += pmsu.o obj-$(CONFIG_SMP) += platsmp.o headsmp.o obj-$(CONFIG_HOTPLUG_CPU) += hotplug.o Thomas -- Thomas Petazzoni, Free Electrons Kernel, drivers, real-time and embedded Linux development, consulting, training and support. http://free-electrons.com ^ permalink raw reply related [flat|nested] 4+ messages in thread
* [GIT PULL] mvebu irqchip for v3.10 2013-04-18 9:47 ` Thomas Petazzoni @ 2013-04-18 15:46 ` Olof Johansson 0 siblings, 0 replies; 4+ messages in thread From: Olof Johansson @ 2013-04-18 15:46 UTC (permalink / raw) To: linux-arm-kernel Yeah, sorry -- my fault for doing merges late at night and not sanity-checking a build before pushing. Fixed now. -Olof On Thu, Apr 18, 2013 at 2:47 AM, Thomas Petazzoni <thomas.petazzoni@free-electrons.com> wrote: > Olof, Jason, > > On Wed, 17 Apr 2013 23:42:17 -0700, Olof Johansson wrote: > >> > The following changes since commit >> > 31880c37c11e28cb81c70757e38392b42e695dc6: >> > >> > Linux 3.9-rc6 (2013-04-07 20:49:54 -0700) >> > >> > are available in the git repository at: >> > >> > git://git.infradead.org/users/jcooper/linux.git tags/irqchip-3.10 >> > >> > for you to fetch changes up to >> > 5ec69017cc944f3ed88362d4b60818713a45e616: >> > >> > irqchip: armada-370-xp: slightly cleanup irq controller driver >> > (2013-04-15 19:35:17 +0000) >> > >> > ---------------------------------------------------------------- >> > mvebu driver irqchip for v3.10 >> > >> > - move the armada irqchip driver to drivers/irqchip/ >> > >> > Note: >> > - I asked tglx if it was ok to take this series on 10 Apr due to >> > it's complex dependencies. 5+ days have passed with no objection. >> > - I put this driver in a separate mvebu branch in case tglx or >> > others object, it can be dropped with minimal impact to other work. >> >> >> Hi, >> >> These notes are useful to include in the pull request, but not in the >> git tag -- they don't really hold much permanent value. >> >> This branch also seems to have a few internal conflicts on mbus >> changes. Not a big deal, I fixed it up, but you might as well have >> based this on the other branch as well. >> >> Merged as a late/cleanup branch. > > I just tested arm-soc/for-next, and it seems like there was a merge > conflict that was not properly resolved. The > arch/arm/mach-mvebu/Makefile still references irq-armada-370-xp.c, even > though it has been moved to drivers/irqchip/ as per the pull request of > this e-mail. The fix is: > > diff --git a/arch/arm/mach-mvebu/Makefile b/arch/arm/mach-mvebu/Makefile > index ca3b43f..90be143 100644 > --- a/arch/arm/mach-mvebu/Makefile > +++ b/arch/arm/mach-mvebu/Makefile > @@ -6,6 +6,6 @@ AFLAGS_coherency_ll.o := -Wa,-march=armv7-a > obj-y += system-controller.o > obj-$(CONFIG_MACH_ARMADA_370_XP) += armada-370-xp.o > obj-$(CONFIG_ARCH_MVEBU) += coherency.o coherency_ll.o > -obj-$(CONFIG_ARCH_MVEBU) += pmsu.o irq-armada-370-xp.o > +obj-$(CONFIG_ARCH_MVEBU) += pmsu.o > obj-$(CONFIG_SMP) += platsmp.o headsmp.o > obj-$(CONFIG_HOTPLUG_CPU) += hotplug.o > > Thomas > -- > Thomas Petazzoni, Free Electrons > Kernel, drivers, real-time and embedded Linux > development, consulting, training and support. > http://free-electrons.com ^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2013-04-18 15:46 UTC | newest] Thread overview: 4+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2013-04-15 19:52 [GIT PULL] mvebu irqchip for v3.10 Jason Cooper 2013-04-18 6:42 ` Olof Johansson 2013-04-18 9:47 ` Thomas Petazzoni 2013-04-18 15:46 ` Olof Johansson
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).