All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/3] ARM: mvebu: minor improvements
@ 2013-12-23  8:48 Thomas Petazzoni
  2013-12-23  8:48 ` [PATCH 1/3] ARM: mvebu: move ARMADA_XP_MAX_CPUS to armada-370-xp.h Thomas Petazzoni
                   ` (3 more replies)
  0 siblings, 4 replies; 11+ messages in thread
From: Thomas Petazzoni @ 2013-12-23  8:48 UTC (permalink / raw)
  To: linux-arm-kernel

Jason, Gregory, Sebastian, Andrew,

Here are three patches making minor improvements to the mvebu code
base.

 * The first one moves an 370/XP specific declaration to
   armada-370-xp.h, in preparation for the future addition of the
   support for other SOCs in mach-mvebu/. It should go to mvebu/soc.

 * The second one fixes the length of the registers of the Armada XP
   PMSU. It should go to mvebu/dt. There is no need to push this as a
   fix, as it *reduces* the length of the register area, so it is
   really only a cosmetic improvement.

 * The third one makes a function static. It should to to mvebu/soc.

Thanks!

Thomas

Thomas Petazzoni (3):
  ARM: mvebu: move ARMADA_XP_MAX_CPUS to armada-370-xp.h
  ARM: mvebu: fix register length for Armada XP PMSU
  ARM: mvebu: make armada_370_xp_pmsu_init() static

 arch/arm/boot/dts/armada-xp.dtsi    | 2 +-
 arch/arm/mach-mvebu/armada-370-xp.h | 2 ++
 arch/arm/mach-mvebu/common.h        | 3 ---
 arch/arm/mach-mvebu/pmsu.c          | 2 +-
 4 files changed, 4 insertions(+), 5 deletions(-)

-- 
1.8.3.2

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

* [PATCH 1/3] ARM: mvebu: move ARMADA_XP_MAX_CPUS to armada-370-xp.h
  2013-12-23  8:48 [PATCH 0/3] ARM: mvebu: minor improvements Thomas Petazzoni
@ 2013-12-23  8:48 ` Thomas Petazzoni
  2013-12-23  8:52   ` Gregory CLEMENT
  2013-12-25  1:51   ` Jason Cooper
  2013-12-23  8:48 ` [PATCH 2/3] ARM: mvebu: fix register length for Armada XP PMSU Thomas Petazzoni
                   ` (2 subsequent siblings)
  3 siblings, 2 replies; 11+ messages in thread
From: Thomas Petazzoni @ 2013-12-23  8:48 UTC (permalink / raw)
  To: linux-arm-kernel

The ARMADA_XP_MAX_CPUS definition was in common.h, which as its name
says, is common to all mvebu SoCs. It is more logical to have this XP
specific definition in the already existing armada-370-xp.h header
file, especially in preparation to the addition of the support for
other SOCs in mach-mvebu.

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
---
 arch/arm/mach-mvebu/armada-370-xp.h | 2 ++
 arch/arm/mach-mvebu/common.h        | 2 --
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/arch/arm/mach-mvebu/armada-370-xp.h b/arch/arm/mach-mvebu/armada-370-xp.h
index c612b2c..4ed534d 100644
--- a/arch/arm/mach-mvebu/armada-370-xp.h
+++ b/arch/arm/mach-mvebu/armada-370-xp.h
@@ -18,6 +18,8 @@
 #ifdef CONFIG_SMP
 #include <linux/cpumask.h>
 
+#define ARMADA_XP_MAX_CPUS 4
+
 void armada_mpic_send_doorbell(const struct cpumask *mask, unsigned int irq);
 void armada_xp_mpic_smp_cpu_init(void);
 #endif
diff --git a/arch/arm/mach-mvebu/common.h b/arch/arm/mach-mvebu/common.h
index e366010..f7ad45e 100644
--- a/arch/arm/mach-mvebu/common.h
+++ b/arch/arm/mach-mvebu/common.h
@@ -15,8 +15,6 @@
 #ifndef __ARCH_MVEBU_COMMON_H
 #define __ARCH_MVEBU_COMMON_H
 
-#define ARMADA_XP_MAX_CPUS 4
-
 #include <linux/reboot.h>
 
 void mvebu_restart(enum reboot_mode mode, const char *cmd);
-- 
1.8.3.2

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

* [PATCH 2/3] ARM: mvebu: fix register length for Armada XP PMSU
  2013-12-23  8:48 [PATCH 0/3] ARM: mvebu: minor improvements Thomas Petazzoni
  2013-12-23  8:48 ` [PATCH 1/3] ARM: mvebu: move ARMADA_XP_MAX_CPUS to armada-370-xp.h Thomas Petazzoni
@ 2013-12-23  8:48 ` Thomas Petazzoni
  2013-12-23  8:52   ` Gregory CLEMENT
  2013-12-25  1:58   ` Jason Cooper
  2013-12-23  8:48 ` [PATCH 3/3] ARM: mvebu: make armada_370_xp_pmsu_init() static Thomas Petazzoni
  2013-12-23 16:13 ` [PATCH 0/3] ARM: mvebu: minor improvements Andrew Lunn
  3 siblings, 2 replies; 11+ messages in thread
From: Thomas Petazzoni @ 2013-12-23  8:48 UTC (permalink / raw)
  To: linux-arm-kernel

The per-CPU PMSU registers documented in the datasheet start at
0x22100 and the last register for CPU3 is at 0x22428. However, the DT
informations use <0x22100 0x430>, which makes the region end at
0x22530 and not 0x22430.

Moreover, looking at the datasheet, we can see that the registers for
CPU0 start at 0x22100, for CPU1 at 0x22200, for CPU2 at 0x22300 and
for CPU3 at 0x22400. It seems clear that 0x100 bytes of registers have
been used per CPU.

Therefore, this commit reduces the length of the PMSU per-CPU register
area from the incorrect 0x430 bytes to a more logical 0x400 bytes.

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
---
 arch/arm/boot/dts/armada-xp.dtsi | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/arm/boot/dts/armada-xp.dtsi b/arch/arm/boot/dts/armada-xp.dtsi
index 281c644..aa49f17 100644
--- a/arch/arm/boot/dts/armada-xp.dtsi
+++ b/arch/arm/boot/dts/armada-xp.dtsi
@@ -48,7 +48,7 @@
 
 			armada-370-xp-pmsu at 22000 {
 				compatible = "marvell,armada-370-xp-pmsu";
-				reg = <0x22100 0x430>, <0x20800 0x20>;
+				reg = <0x22100 0x400>, <0x20800 0x20>;
 			};
 
 			serial at 12200 {
-- 
1.8.3.2

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

* [PATCH 3/3] ARM: mvebu: make armada_370_xp_pmsu_init() static
  2013-12-23  8:48 [PATCH 0/3] ARM: mvebu: minor improvements Thomas Petazzoni
  2013-12-23  8:48 ` [PATCH 1/3] ARM: mvebu: move ARMADA_XP_MAX_CPUS to armada-370-xp.h Thomas Petazzoni
  2013-12-23  8:48 ` [PATCH 2/3] ARM: mvebu: fix register length for Armada XP PMSU Thomas Petazzoni
@ 2013-12-23  8:48 ` Thomas Petazzoni
  2013-12-23  8:53   ` Gregory CLEMENT
  2013-12-25  1:47   ` Jason Cooper
  2013-12-23 16:13 ` [PATCH 0/3] ARM: mvebu: minor improvements Andrew Lunn
  3 siblings, 2 replies; 11+ messages in thread
From: Thomas Petazzoni @ 2013-12-23  8:48 UTC (permalink / raw)
  To: linux-arm-kernel

The armada_370_xp_pmsu_init() function is called as an
early_initcall(). Therefore, there is no need to export this function,
and we can make it static.

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
---
 arch/arm/mach-mvebu/common.h | 1 -
 arch/arm/mach-mvebu/pmsu.c   | 2 +-
 2 files changed, 1 insertion(+), 2 deletions(-)

diff --git a/arch/arm/mach-mvebu/common.h b/arch/arm/mach-mvebu/common.h
index f7ad45e..8de509a 100644
--- a/arch/arm/mach-mvebu/common.h
+++ b/arch/arm/mach-mvebu/common.h
@@ -24,7 +24,6 @@ void armada_370_xp_handle_irq(struct pt_regs *regs);
 
 void armada_xp_cpu_die(unsigned int cpu);
 int armada_370_xp_coherency_init(void);
-int armada_370_xp_pmsu_init(void);
 void armada_xp_secondary_startup(void);
 extern struct smp_operations armada_xp_smp_ops;
 #endif
diff --git a/arch/arm/mach-mvebu/pmsu.c b/arch/arm/mach-mvebu/pmsu.c
index 27fc4f0..f614727 100644
--- a/arch/arm/mach-mvebu/pmsu.c
+++ b/arch/arm/mach-mvebu/pmsu.c
@@ -58,7 +58,7 @@ int armada_xp_boot_cpu(unsigned int cpu_id, void *boot_addr)
 }
 #endif
 
-int __init armada_370_xp_pmsu_init(void)
+static int __init armada_370_xp_pmsu_init(void)
 {
 	struct device_node *np;
 
-- 
1.8.3.2

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

* [PATCH 1/3] ARM: mvebu: move ARMADA_XP_MAX_CPUS to armada-370-xp.h
  2013-12-23  8:48 ` [PATCH 1/3] ARM: mvebu: move ARMADA_XP_MAX_CPUS to armada-370-xp.h Thomas Petazzoni
@ 2013-12-23  8:52   ` Gregory CLEMENT
  2013-12-25  1:51   ` Jason Cooper
  1 sibling, 0 replies; 11+ messages in thread
From: Gregory CLEMENT @ 2013-12-23  8:52 UTC (permalink / raw)
  To: linux-arm-kernel

Hi Thomas,

On 23/12/2013 09:48, Thomas Petazzoni wrote:
> The ARMADA_XP_MAX_CPUS definition was in common.h, which as its name
> says, is common to all mvebu SoCs. It is more logical to have this XP
> specific definition in the already existing armada-370-xp.h header
> file, especially in preparation to the addition of the support for
> other SOCs in mach-mvebu.
> 
> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>


Acked-by: Gregory CLEMENT <gregory.clement@free-electrons.com>


Thanks,

Gregory

> ---
>  arch/arm/mach-mvebu/armada-370-xp.h | 2 ++
>  arch/arm/mach-mvebu/common.h        | 2 --
>  2 files changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/arch/arm/mach-mvebu/armada-370-xp.h b/arch/arm/mach-mvebu/armada-370-xp.h
> index c612b2c..4ed534d 100644
> --- a/arch/arm/mach-mvebu/armada-370-xp.h
> +++ b/arch/arm/mach-mvebu/armada-370-xp.h
> @@ -18,6 +18,8 @@
>  #ifdef CONFIG_SMP
>  #include <linux/cpumask.h>
>  
> +#define ARMADA_XP_MAX_CPUS 4
> +
>  void armada_mpic_send_doorbell(const struct cpumask *mask, unsigned int irq);
>  void armada_xp_mpic_smp_cpu_init(void);
>  #endif
> diff --git a/arch/arm/mach-mvebu/common.h b/arch/arm/mach-mvebu/common.h
> index e366010..f7ad45e 100644
> --- a/arch/arm/mach-mvebu/common.h
> +++ b/arch/arm/mach-mvebu/common.h
> @@ -15,8 +15,6 @@
>  #ifndef __ARCH_MVEBU_COMMON_H
>  #define __ARCH_MVEBU_COMMON_H
>  
> -#define ARMADA_XP_MAX_CPUS 4
> -
>  #include <linux/reboot.h>
>  
>  void mvebu_restart(enum reboot_mode mode, const char *cmd);
> 


-- 
Gregory Clement, Free Electrons
Kernel, drivers, real-time and embedded Linux
development, consulting, training and support.
http://free-electrons.com

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

* [PATCH 2/3] ARM: mvebu: fix register length for Armada XP PMSU
  2013-12-23  8:48 ` [PATCH 2/3] ARM: mvebu: fix register length for Armada XP PMSU Thomas Petazzoni
@ 2013-12-23  8:52   ` Gregory CLEMENT
  2013-12-25  1:58   ` Jason Cooper
  1 sibling, 0 replies; 11+ messages in thread
From: Gregory CLEMENT @ 2013-12-23  8:52 UTC (permalink / raw)
  To: linux-arm-kernel

Hi Thomas, Jason, Sebastian, Andrew,

On 23/12/2013 09:48, Thomas Petazzoni wrote:
> The per-CPU PMSU registers documented in the datasheet start at
> 0x22100 and the last register for CPU3 is at 0x22428. However, the DT
> informations use <0x22100 0x430>, which makes the region end at
> 0x22530 and not 0x22430.
> 
> Moreover, looking at the datasheet, we can see that the registers for
> CPU0 start at 0x22100, for CPU1 at 0x22200, for CPU2 at 0x22300 and
> for CPU3 at 0x22400. It seems clear that 0x100 bytes of registers have
> been used per CPU.
> 
> Therefore, this commit reduces the length of the PMSU per-CPU register
> area from the incorrect 0x430 bytes to a more logical 0x400 bytes.
> 
> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>

Acked-by: Gregory CLEMENT <gregory.clement@free-electrons.com>


Thanks,

Gregory

> ---
>  arch/arm/boot/dts/armada-xp.dtsi | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/arch/arm/boot/dts/armada-xp.dtsi b/arch/arm/boot/dts/armada-xp.dtsi
> index 281c644..aa49f17 100644
> --- a/arch/arm/boot/dts/armada-xp.dtsi
> +++ b/arch/arm/boot/dts/armada-xp.dtsi
> @@ -48,7 +48,7 @@
>  
>  			armada-370-xp-pmsu at 22000 {
>  				compatible = "marvell,armada-370-xp-pmsu";
> -				reg = <0x22100 0x430>, <0x20800 0x20>;
> +				reg = <0x22100 0x400>, <0x20800 0x20>;
>  			};
>  
>  			serial at 12200 {
> 


-- 
Gregory Clement, Free Electrons
Kernel, drivers, real-time and embedded Linux
development, consulting, training and support.
http://free-electrons.com

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

* [PATCH 3/3] ARM: mvebu: make armada_370_xp_pmsu_init() static
  2013-12-23  8:48 ` [PATCH 3/3] ARM: mvebu: make armada_370_xp_pmsu_init() static Thomas Petazzoni
@ 2013-12-23  8:53   ` Gregory CLEMENT
  2013-12-25  1:47   ` Jason Cooper
  1 sibling, 0 replies; 11+ messages in thread
From: Gregory CLEMENT @ 2013-12-23  8:53 UTC (permalink / raw)
  To: linux-arm-kernel

Hi Thomas,

On 23/12/2013 09:48, Thomas Petazzoni wrote:
> The armada_370_xp_pmsu_init() function is called as an
> early_initcall(). Therefore, there is no need to export this function,
> and we can make it static.
> 
> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>

Acked-by: Gregory CLEMENT <gregory.clement@free-electrons.com>


Thanks,

Gregory

> ---
>  arch/arm/mach-mvebu/common.h | 1 -
>  arch/arm/mach-mvebu/pmsu.c   | 2 +-
>  2 files changed, 1 insertion(+), 2 deletions(-)
> 
> diff --git a/arch/arm/mach-mvebu/common.h b/arch/arm/mach-mvebu/common.h
> index f7ad45e..8de509a 100644
> --- a/arch/arm/mach-mvebu/common.h
> +++ b/arch/arm/mach-mvebu/common.h
> @@ -24,7 +24,6 @@ void armada_370_xp_handle_irq(struct pt_regs *regs);
>  
>  void armada_xp_cpu_die(unsigned int cpu);
>  int armada_370_xp_coherency_init(void);
> -int armada_370_xp_pmsu_init(void);
>  void armada_xp_secondary_startup(void);
>  extern struct smp_operations armada_xp_smp_ops;
>  #endif
> diff --git a/arch/arm/mach-mvebu/pmsu.c b/arch/arm/mach-mvebu/pmsu.c
> index 27fc4f0..f614727 100644
> --- a/arch/arm/mach-mvebu/pmsu.c
> +++ b/arch/arm/mach-mvebu/pmsu.c
> @@ -58,7 +58,7 @@ int armada_xp_boot_cpu(unsigned int cpu_id, void *boot_addr)
>  }
>  #endif
>  
> -int __init armada_370_xp_pmsu_init(void)
> +static int __init armada_370_xp_pmsu_init(void)
>  {
>  	struct device_node *np;
>  
> 


-- 
Gregory Clement, Free Electrons
Kernel, drivers, real-time and embedded Linux
development, consulting, training and support.
http://free-electrons.com

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

* [PATCH 0/3] ARM: mvebu: minor improvements
  2013-12-23  8:48 [PATCH 0/3] ARM: mvebu: minor improvements Thomas Petazzoni
                   ` (2 preceding siblings ...)
  2013-12-23  8:48 ` [PATCH 3/3] ARM: mvebu: make armada_370_xp_pmsu_init() static Thomas Petazzoni
@ 2013-12-23 16:13 ` Andrew Lunn
  3 siblings, 0 replies; 11+ messages in thread
From: Andrew Lunn @ 2013-12-23 16:13 UTC (permalink / raw)
  To: linux-arm-kernel

On Mon, Dec 23, 2013 at 09:48:08AM +0100, Thomas Petazzoni wrote:
> Jason, Gregory, Sebastian, Andrew,
> 
> Here are three patches making minor improvements to the mvebu code
> base.
> 
>  * The first one moves an 370/XP specific declaration to
>    armada-370-xp.h, in preparation for the future addition of the
>    support for other SOCs in mach-mvebu/. It should go to mvebu/soc.
> 
>  * The second one fixes the length of the registers of the Armada XP
>    PMSU. It should go to mvebu/dt. There is no need to push this as a
>    fix, as it *reduces* the length of the register area, so it is
>    really only a cosmetic improvement.
> 
>  * The third one makes a function static. It should to to mvebu/soc.
> 
> Thanks!

Hi Thomas

All look sensible to me,

Acked-by: Andrew Lunn <andrew@lunn.ch>

	  Andrew

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

* [PATCH 3/3] ARM: mvebu: make armada_370_xp_pmsu_init() static
  2013-12-23  8:48 ` [PATCH 3/3] ARM: mvebu: make armada_370_xp_pmsu_init() static Thomas Petazzoni
  2013-12-23  8:53   ` Gregory CLEMENT
@ 2013-12-25  1:47   ` Jason Cooper
  1 sibling, 0 replies; 11+ messages in thread
From: Jason Cooper @ 2013-12-25  1:47 UTC (permalink / raw)
  To: linux-arm-kernel

Thomas,

On Mon, Dec 23, 2013 at 09:48:11AM +0100, Thomas Petazzoni wrote:
> The armada_370_xp_pmsu_init() function is called as an
> early_initcall(). Therefore, there is no need to export this function,
> and we can make it static.
> 
> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
> ---
>  arch/arm/mach-mvebu/common.h | 1 -
>  arch/arm/mach-mvebu/pmsu.c   | 2 +-
>  2 files changed, 1 insertion(+), 2 deletions(-)

Thanks, but this was already cleaned up up by:

  b12634e343be ARM: mvebu: fix some sparse warnings

in mvebu/soc (it was actually HEAD up until a few moments ago ;-)

Ho, ho, ho,

Jason.

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

* [PATCH 1/3] ARM: mvebu: move ARMADA_XP_MAX_CPUS to armada-370-xp.h
  2013-12-23  8:48 ` [PATCH 1/3] ARM: mvebu: move ARMADA_XP_MAX_CPUS to armada-370-xp.h Thomas Petazzoni
  2013-12-23  8:52   ` Gregory CLEMENT
@ 2013-12-25  1:51   ` Jason Cooper
  1 sibling, 0 replies; 11+ messages in thread
From: Jason Cooper @ 2013-12-25  1:51 UTC (permalink / raw)
  To: linux-arm-kernel

On Mon, Dec 23, 2013 at 09:48:09AM +0100, Thomas Petazzoni wrote:
> The ARMADA_XP_MAX_CPUS definition was in common.h, which as its name
> says, is common to all mvebu SoCs. It is more logical to have this XP
> specific definition in the already existing armada-370-xp.h header
> file, especially in preparation to the addition of the support for
> other SOCs in mach-mvebu.
> 
> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
> ---
>  arch/arm/mach-mvebu/armada-370-xp.h | 2 ++
>  arch/arm/mach-mvebu/common.h        | 2 --
>  2 files changed, 2 insertions(+), 2 deletions(-)

Applied to mvebu/soc

thx,

Jason.

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

* [PATCH 2/3] ARM: mvebu: fix register length for Armada XP PMSU
  2013-12-23  8:48 ` [PATCH 2/3] ARM: mvebu: fix register length for Armada XP PMSU Thomas Petazzoni
  2013-12-23  8:52   ` Gregory CLEMENT
@ 2013-12-25  1:58   ` Jason Cooper
  1 sibling, 0 replies; 11+ messages in thread
From: Jason Cooper @ 2013-12-25  1:58 UTC (permalink / raw)
  To: linux-arm-kernel

On Mon, Dec 23, 2013 at 09:48:10AM +0100, Thomas Petazzoni wrote:
> The per-CPU PMSU registers documented in the datasheet start at
> 0x22100 and the last register for CPU3 is at 0x22428. However, the DT
> informations use <0x22100 0x430>, which makes the region end at
> 0x22530 and not 0x22430.
> 
> Moreover, looking at the datasheet, we can see that the registers for
> CPU0 start at 0x22100, for CPU1 at 0x22200, for CPU2 at 0x22300 and
> for CPU3 at 0x22400. It seems clear that 0x100 bytes of registers have
> been used per CPU.
> 
> Therefore, this commit reduces the length of the PMSU per-CPU register
> area from the incorrect 0x430 bytes to a more logical 0x400 bytes.
> 
> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
> ---
>  arch/arm/boot/dts/armada-xp.dtsi | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)

Applied to mvebu/dt after a little reshuffling due to the dtsi node
sorting.

thx,

Jason.

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

end of thread, other threads:[~2013-12-25  1:58 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-12-23  8:48 [PATCH 0/3] ARM: mvebu: minor improvements Thomas Petazzoni
2013-12-23  8:48 ` [PATCH 1/3] ARM: mvebu: move ARMADA_XP_MAX_CPUS to armada-370-xp.h Thomas Petazzoni
2013-12-23  8:52   ` Gregory CLEMENT
2013-12-25  1:51   ` Jason Cooper
2013-12-23  8:48 ` [PATCH 2/3] ARM: mvebu: fix register length for Armada XP PMSU Thomas Petazzoni
2013-12-23  8:52   ` Gregory CLEMENT
2013-12-25  1:58   ` Jason Cooper
2013-12-23  8:48 ` [PATCH 3/3] ARM: mvebu: make armada_370_xp_pmsu_init() static Thomas Petazzoni
2013-12-23  8:53   ` Gregory CLEMENT
2013-12-25  1:47   ` Jason Cooper
2013-12-23 16:13 ` [PATCH 0/3] ARM: mvebu: minor improvements Andrew Lunn

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.