* [GIT PULL] picoxcell cleanups for 3.11
@ 2013-06-11 12:26 Jamie Iles
2013-06-19 10:02 ` Jamie Iles
0 siblings, 1 reply; 6+ messages in thread
From: Jamie Iles @ 2013-06-11 12:26 UTC (permalink / raw)
To: linux-arm-kernel
Hi Arnd, Olof,
Please pull these small changes for 3.11 to cleanup the picoxcell machine
support.
Thanks,
Jamie
The following changes since commit f722406faae2d073cc1d01063d1123c35425939e:
Linux 3.10-rc1 (2013-05-11 17:14:08 -0700)
are available in the git repository at:
git://github.com/jamieiles/linux-2.6-ji.git picoxcell-next
for you to fetch changes up to 4b83f75a7af388aaf5f79ccf72c37074bc9166da:
ARM: picoxcell: Remove init_irq declaration in machine description (2013-05-14 17:19:12 +0100)
----------------------------------------------------------------
Jamie Iles (1):
picoxcell: remove redundant common.h
Maxime Ripard (1):
ARM: picoxcell: Remove init_irq declaration in machine description
arch/arm/mach-picoxcell/common.c | 7 -------
arch/arm/mach-picoxcell/common.h | 17 -----------------
2 files changed, 24 deletions(-)
delete mode 100644 arch/arm/mach-picoxcell/common.h
^ permalink raw reply [flat|nested] 6+ messages in thread
* [GIT PULL] picoxcell cleanups for 3.11
2013-06-11 12:26 [GIT PULL] picoxcell cleanups for 3.11 Jamie Iles
@ 2013-06-19 10:02 ` Jamie Iles
2013-06-20 13:31 ` Arnd Bergmann
2013-06-20 14:24 ` Arnd Bergmann
0 siblings, 2 replies; 6+ messages in thread
From: Jamie Iles @ 2013-06-19 10:02 UTC (permalink / raw)
To: linux-arm-kernel
Fixing Arnd's mail address (sorry!).
Jamie
On Tue, Jun 11, 2013 at 01:26:21PM +0100, Jamie Iles wrote:
> Hi Arnd, Olof,
>
> Please pull these small changes for 3.11 to cleanup the picoxcell machine
> support.
>
> Thanks,
>
> Jamie
>
> The following changes since commit f722406faae2d073cc1d01063d1123c35425939e:
>
> Linux 3.10-rc1 (2013-05-11 17:14:08 -0700)
>
> are available in the git repository at:
>
> git://github.com/jamieiles/linux-2.6-ji.git picoxcell-next
>
> for you to fetch changes up to 4b83f75a7af388aaf5f79ccf72c37074bc9166da:
>
> ARM: picoxcell: Remove init_irq declaration in machine description (2013-05-14 17:19:12 +0100)
>
> ----------------------------------------------------------------
> Jamie Iles (1):
> picoxcell: remove redundant common.h
>
> Maxime Ripard (1):
> ARM: picoxcell: Remove init_irq declaration in machine description
>
> arch/arm/mach-picoxcell/common.c | 7 -------
> arch/arm/mach-picoxcell/common.h | 17 -----------------
> 2 files changed, 24 deletions(-)
> delete mode 100644 arch/arm/mach-picoxcell/common.h
^ permalink raw reply [flat|nested] 6+ messages in thread
* [GIT PULL] picoxcell cleanups for 3.11
2013-06-19 10:02 ` Jamie Iles
@ 2013-06-20 13:31 ` Arnd Bergmann
2013-06-20 14:24 ` Arnd Bergmann
1 sibling, 0 replies; 6+ messages in thread
From: Arnd Bergmann @ 2013-06-20 13:31 UTC (permalink / raw)
To: linux-arm-kernel
On Wednesday 19 June 2013, Jamie Iles wrote:
> On Tue, Jun 11, 2013 at 01:26:21PM +0100, Jamie Iles wrote:
> > Hi Arnd, Olof,
> >
> > Please pull these small changes for 3.11 to cleanup the picoxcell machine
> > support.
> >
Pulled into next/cleanup, thanks!
Arnd
^ permalink raw reply [flat|nested] 6+ messages in thread
* [GIT PULL] picoxcell cleanups for 3.11
2013-06-19 10:02 ` Jamie Iles
2013-06-20 13:31 ` Arnd Bergmann
@ 2013-06-20 14:24 ` Arnd Bergmann
2013-06-20 14:57 ` Jamie Iles
1 sibling, 1 reply; 6+ messages in thread
From: Arnd Bergmann @ 2013-06-20 14:24 UTC (permalink / raw)
To: linux-arm-kernel
On Wednesday 19 June 2013, Jamie Iles wrote:
> Fixing Arnd's mail address (sorry!).
you did forget to fix up Olof's address though.
> > ----------------------------------------------------------------
> > Jamie Iles (1):
> > picoxcell: remove redundant common.h
> >
> > Maxime Ripard (1):
> > ARM: picoxcell: Remove init_irq declaration in machine description
I got a regression since NR_IRQS_LEGACY is not defined with the headers
removed.
I think we can just remove this line as well, since NR_IRQS_LEGACY is
the default anyway.
Does that work?
diff --git a/arch/arm/mach-picoxcell/common.c b/arch/arm/mach-picoxcell/common.c
index 8267c5d..b13f51b 100644
--- a/arch/arm/mach-picoxcell/common.c
+++ b/arch/arm/mach-picoxcell/common.c
@@ -79,7 +79,6 @@ static void picoxcell_wdt_restart(char mode, const char *cmd)
DT_MACHINE_START(PICOXCELL, "Picochip picoXcell")
.map_io = picoxcell_map_io,
- .nr_irqs = NR_IRQS_LEGACY,
.init_machine = picoxcell_init_machine,
.dt_compat = picoxcell_dt_match,
.restart = picoxcell_wdt_restart,
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [GIT PULL] picoxcell cleanups for 3.11
2013-06-20 14:24 ` Arnd Bergmann
@ 2013-06-20 14:57 ` Jamie Iles
2013-06-20 18:45 ` Arnd Bergmann
0 siblings, 1 reply; 6+ messages in thread
From: Jamie Iles @ 2013-06-20 14:57 UTC (permalink / raw)
To: linux-arm-kernel
Hi Arnd,
On Thu, Jun 20, 2013 at 04:24:09PM +0200, Arnd Bergmann wrote:
> On Wednesday 19 June 2013, Jamie Iles wrote:
> > Fixing Arnd's mail address (sorry!).
>
> you did forget to fix up Olof's address though.
Gah, fat fingers!
> > > ----------------------------------------------------------------
> > > Jamie Iles (1):
> > > picoxcell: remove redundant common.h
> > >
> > > Maxime Ripard (1):
> > > ARM: picoxcell: Remove init_irq declaration in machine description
>
> I got a regression since NR_IRQS_LEGACY is not defined with the headers
> removed.
>
> I think we can just remove this line as well, since NR_IRQS_LEGACY is
> the default anyway.
>
> Does that work?
I can't reproduce the failure here with my config, I guess it's getting
included through one of the other includes. Either way, your fix looks
good to me.
Thanks,
Jamie
> diff --git a/arch/arm/mach-picoxcell/common.c b/arch/arm/mach-picoxcell/common.c
> index 8267c5d..b13f51b 100644
> --- a/arch/arm/mach-picoxcell/common.c
> +++ b/arch/arm/mach-picoxcell/common.c
> @@ -79,7 +79,6 @@ static void picoxcell_wdt_restart(char mode, const char *cmd)
>
> DT_MACHINE_START(PICOXCELL, "Picochip picoXcell")
> .map_io = picoxcell_map_io,
> - .nr_irqs = NR_IRQS_LEGACY,
> .init_machine = picoxcell_init_machine,
> .dt_compat = picoxcell_dt_match,
> .restart = picoxcell_wdt_restart,
^ permalink raw reply [flat|nested] 6+ messages in thread
* [GIT PULL] picoxcell cleanups for 3.11
2013-06-20 14:57 ` Jamie Iles
@ 2013-06-20 18:45 ` Arnd Bergmann
0 siblings, 0 replies; 6+ messages in thread
From: Arnd Bergmann @ 2013-06-20 18:45 UTC (permalink / raw)
To: linux-arm-kernel
On Thursday 20 June 2013, Jamie Iles wrote:
> > > > ----------------------------------------------------------------
> > > > Jamie Iles (1):
> > > > picoxcell: remove redundant common.h
> > > >
> > > > Maxime Ripard (1):
> > > > ARM: picoxcell: Remove init_irq declaration in machine description
> >
> > I got a regression since NR_IRQS_LEGACY is not defined with the headers
> > removed.
> >
> > I think we can just remove this line as well, since NR_IRQS_LEGACY is
> > the default anyway.
> >
> > Does that work?
>
> I can't reproduce the failure here with my config, I guess it's getting
> included through one of the other includes. Either way, your fix looks
> good to me.
I only saw the problem in allmodconfig, not multi_v7_defconfig.
Applied the fix now with your Ack.
Arnd
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2013-06-20 18:45 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-06-11 12:26 [GIT PULL] picoxcell cleanups for 3.11 Jamie Iles
2013-06-19 10:02 ` Jamie Iles
2013-06-20 13:31 ` Arnd Bergmann
2013-06-20 14:24 ` Arnd Bergmann
2013-06-20 14:57 ` Jamie Iles
2013-06-20 18:45 ` Arnd Bergmann
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).