linux-sh.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [GIT PULL] Renesas ARM based emev2 SoC updates for v3.11
@ 2013-05-26 13:05 Simon Horman
  2013-05-26 13:05 ` [PATCH] ARM: shmobile: emev2: Remove init_irq declaration in machine description Simon Horman
  2013-05-28  3:18 ` [GIT PULL] Renesas ARM based emev2 SoC updates for v3.11 Olof Johansson
  0 siblings, 2 replies; 5+ messages in thread
From: Simon Horman @ 2013-05-26 13:05 UTC (permalink / raw)
  To: linux-arm-kernel

Hi Arnd, Hi Olof,

The following changes since commit c7788792a5e7b0d5d7f96d0766b4cb6112d47d75:

  Linux 3.10-rc2 (2013-05-20 14:37:38 -0700)

are available in the git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git tags/renesas-soc-emev2-for-v3.11

for you to fetch changes up to 94a6af856df56ed39bb59ebe17bfa2d10fb333f2:

  ARM: shmobile: emev2: Remove init_irq declaration in machine description (2013-05-22 21:42:03 +0900)

----------------------------------------------------------------
Renesas ARM based emev2 SoC updates for v3.11

Clean-up from Maxime Ripard to remove unnecessary init_irq declaration in
machine description.

----------------------------------------------------------------
Maxime Ripard (1):
      ARM: shmobile: emev2: Remove init_irq declaration in machine description

 arch/arm/mach-shmobile/setup-emev2.c |    2 --
 1 file changed, 2 deletions(-)

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [PATCH] ARM: shmobile: emev2: Remove init_irq declaration in machine description
  2013-05-26 13:05 [GIT PULL] Renesas ARM based emev2 SoC updates for v3.11 Simon Horman
@ 2013-05-26 13:05 ` Simon Horman
  2013-05-28  3:18 ` [GIT PULL] Renesas ARM based emev2 SoC updates for v3.11 Olof Johansson
  1 sibling, 0 replies; 5+ messages in thread
From: Simon Horman @ 2013-05-26 13:05 UTC (permalink / raw)
  To: linux-arm-kernel

From: Maxime Ripard <maxime.ripard@free-electrons.com>

Commit ebafed7a ("ARM: irq: Call irqchip_init if no init_irq function is
specified") removed the need to explictly setup the init_irq field in
the machine description when using only irqchip_init. Remove that
declaration for shmobile as well.

Signed-off-by: Maxime Ripard <maxime.ripard@free-electrons.com>
Signed-off-by: Simon Horman <horms+renesas@verge.net.au>
---
 arch/arm/mach-shmobile/setup-emev2.c |    2 --
 1 file changed, 2 deletions(-)

diff --git a/arch/arm/mach-shmobile/setup-emev2.c b/arch/arm/mach-shmobile/setup-emev2.c
index 899a86c..66694e0 100644
--- a/arch/arm/mach-shmobile/setup-emev2.c
+++ b/arch/arm/mach-shmobile/setup-emev2.c
@@ -20,7 +20,6 @@
 #include <linux/init.h>
 #include <linux/interrupt.h>
 #include <linux/irq.h>
-#include <linux/irqchip.h>
 #include <linux/platform_device.h>
 #include <linux/platform_data/gpio-em.h>
 #include <linux/of_platform.h>
@@ -454,7 +453,6 @@ DT_MACHINE_START(EMEV2_DT, "Generic Emma Mobile EV2 (Flattened Device Tree)")
 	.smp		= smp_ops(emev2_smp_ops),
 	.init_early	= emev2_init_delay,
 	.nr_irqs	= NR_IRQS_LEGACY,
-	.init_irq	= irqchip_init,
 	.init_machine	= emev2_add_standard_devices_dt,
 	.dt_compat	= emev2_boards_compat_dt,
 MACHINE_END
-- 
1.7.10.4


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [GIT PULL] Renesas ARM based emev2 SoC updates for v3.11
  2013-05-26 13:05 [GIT PULL] Renesas ARM based emev2 SoC updates for v3.11 Simon Horman
  2013-05-26 13:05 ` [PATCH] ARM: shmobile: emev2: Remove init_irq declaration in machine description Simon Horman
@ 2013-05-28  3:18 ` Olof Johansson
  2013-05-28  3:59   ` Olof Johansson
  2013-05-28  5:27   ` Simon Horman
  1 sibling, 2 replies; 5+ messages in thread
From: Olof Johansson @ 2013-05-28  3:18 UTC (permalink / raw)
  To: linux-arm-kernel

On Sun, May 26, 2013 at 10:05:22PM +0900, Simon Horman wrote:
> Hi Arnd, Hi Olof,
> 
> The following changes since commit c7788792a5e7b0d5d7f96d0766b4cb6112d47d75:
> 
>   Linux 3.10-rc2 (2013-05-20 14:37:38 -0700)
> 
> are available in the git repository at:
> 
>   git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git tags/renesas-soc-emev2-for-v3.11
> 
> for you to fetch changes up to 94a6af856df56ed39bb59ebe17bfa2d10fb333f2:
> 
>   ARM: shmobile: emev2: Remove init_irq declaration in machine description (2013-05-22 21:42:03 +0900)

Hi,

You could have grouped all of the SoC updates into one branch instead of
sending them up SoC by SoC to us. Either way works, just letting you know
there's no need to keep them separate if that's easier.

Also, the changes from Maxime could all have gone into one cleanup branch
together instead of with the SoC code.

Anyway, no harm done, I've pulled this branch (and will pull the others as
well) into our next/soc branch.


Thanks,

-Olof

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [GIT PULL] Renesas ARM based emev2 SoC updates for v3.11
  2013-05-28  3:18 ` [GIT PULL] Renesas ARM based emev2 SoC updates for v3.11 Olof Johansson
@ 2013-05-28  3:59   ` Olof Johansson
  2013-05-28  5:27   ` Simon Horman
  1 sibling, 0 replies; 5+ messages in thread
From: Olof Johansson @ 2013-05-28  3:59 UTC (permalink / raw)
  To: linux-arm-kernel

Hi,


On Mon, May 27, 2013 at 8:18 PM, Olof Johansson <olof@lixom.net> wrote:
> On Sun, May 26, 2013 at 10:05:22PM +0900, Simon Horman wrote:
>> Hi Arnd, Hi Olof,
>>
>> The following changes since commit c7788792a5e7b0d5d7f96d0766b4cb6112d47d75:
>>
>>   Linux 3.10-rc2 (2013-05-20 14:37:38 -0700)
>>
>> are available in the git repository at:
>>
>>   git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git tags/renesas-soc-emev2-for-v3.11
>>
>> for you to fetch changes up to 94a6af856df56ed39bb59ebe17bfa2d10fb333f2:
>>
>>   ARM: shmobile: emev2: Remove init_irq declaration in machine description (2013-05-22 21:42:03 +0900)
>
> Hi,
>
> You could have grouped all of the SoC updates into one branch instead of
> sending them up SoC by SoC to us. Either way works, just letting you know
> there's no need to keep them separate if that's easier.
>
> Also, the changes from Maxime could all have gone into one cleanup branch
> together instead of with the SoC code.
>
> Anyway, no harm done, I've pulled this branch (and will pull the others as
> well) into our next/soc branch.

Based on the comments on the r8a7740 pull request, I've held off
merging this after all.


-Olof

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [GIT PULL] Renesas ARM based emev2 SoC updates for v3.11
  2013-05-28  3:18 ` [GIT PULL] Renesas ARM based emev2 SoC updates for v3.11 Olof Johansson
  2013-05-28  3:59   ` Olof Johansson
@ 2013-05-28  5:27   ` Simon Horman
  1 sibling, 0 replies; 5+ messages in thread
From: Simon Horman @ 2013-05-28  5:27 UTC (permalink / raw)
  To: linux-arm-kernel

On Mon, May 27, 2013 at 08:18:26PM -0700, Olof Johansson wrote:
> On Sun, May 26, 2013 at 10:05:22PM +0900, Simon Horman wrote:
> > Hi Arnd, Hi Olof,
> > 
> > The following changes since commit c7788792a5e7b0d5d7f96d0766b4cb6112d47d75:
> > 
> >   Linux 3.10-rc2 (2013-05-20 14:37:38 -0700)
> > 
> > are available in the git repository at:
> > 
> >   git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git tags/renesas-soc-emev2-for-v3.11
> > 
> > for you to fetch changes up to 94a6af856df56ed39bb59ebe17bfa2d10fb333f2:
> > 
> >   ARM: shmobile: emev2: Remove init_irq declaration in machine description (2013-05-22 21:42:03 +0900)
> 
> Hi,
> 
> You could have grouped all of the SoC updates into one branch instead of
> sending them up SoC by SoC to us. Either way works, just letting you know
> there's no need to keep them separate if that's easier.

Thanks, I think it would have been easier to merge each of the soc-branches
into a single branch and send a single request. I will do so in future.

> Also, the changes from Maxime could all have gone into one cleanup branch
> together instead of with the SoC code.

Sorry, I missed that somehow.

> Anyway, no harm done, I've pulled this branch (and will pull the others as
> well) into our next/soc branch.

Thanks!

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2013-05-28  5:27 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-05-26 13:05 [GIT PULL] Renesas ARM based emev2 SoC updates for v3.11 Simon Horman
2013-05-26 13:05 ` [PATCH] ARM: shmobile: emev2: Remove init_irq declaration in machine description Simon Horman
2013-05-28  3:18 ` [GIT PULL] Renesas ARM based emev2 SoC updates for v3.11 Olof Johansson
2013-05-28  3:59   ` Olof Johansson
2013-05-28  5:27   ` Simon Horman

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).