All of lore.kernel.org
 help / color / mirror / Atom feed
* [GIT PULL] Renesas ARM-based SoC fixes for v3.7
@ 2012-10-17  4:36 ` Simon Horman
  0 siblings, 0 replies; 32+ messages in thread
From: Simon Horman @ 2012-10-17  4:36 UTC (permalink / raw)
  To: linux-arm-kernel

Hi Olof, Hi Arnd,

please consider the following fix for the KZM-A9-GT board for 3.6.
They both resolve fallout from recent IOMEM() changes.

----------------------------------------------------------------
The following changes since commit ddffeb8c4d0331609ef2581d84de4d763607bd37:

  Linux 3.7-rc1 (2012-10-14 14:41:04 -0700)

are available in the git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git fixes

for you to fetch changes up to 11f93576b0b50bf391ffafa544b85e541f5e59a5:

  ARM: shmobile: r8a7779: use __iomem pointers for MMIO (2012-10-16 08:58:56 +0900)

----------------------------------------------------------------
Kuninori Morimoto (2):
      ARM: shmobile: armadillo800eva: __io abuse cleanup
      ARM: shmobile: r8a7779: use __iomem pointers for MMIO

 arch/arm/mach-shmobile/board-armadillo800eva.c |    2 +-
 arch/arm/mach-shmobile/clock-r8a7779.c         |   22 +++++++++++-----------
 2 files changed, 12 insertions(+), 12 deletions(-)

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

* [GIT PULL] Renesas ARM-based SoC fixes for v3.7
@ 2012-10-17  4:36 ` Simon Horman
  0 siblings, 0 replies; 32+ messages in thread
From: Simon Horman @ 2012-10-17  4:36 UTC (permalink / raw)
  To: linux-arm-kernel

Hi Olof, Hi Arnd,

please consider the following fix for the KZM-A9-GT board for 3.6.
They both resolve fallout from recent IOMEM() changes.

----------------------------------------------------------------
The following changes since commit ddffeb8c4d0331609ef2581d84de4d763607bd37:

  Linux 3.7-rc1 (2012-10-14 14:41:04 -0700)

are available in the git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git fixes

for you to fetch changes up to 11f93576b0b50bf391ffafa544b85e541f5e59a5:

  ARM: shmobile: r8a7779: use __iomem pointers for MMIO (2012-10-16 08:58:56 +0900)

----------------------------------------------------------------
Kuninori Morimoto (2):
      ARM: shmobile: armadillo800eva: __io abuse cleanup
      ARM: shmobile: r8a7779: use __iomem pointers for MMIO

 arch/arm/mach-shmobile/board-armadillo800eva.c |    2 +-
 arch/arm/mach-shmobile/clock-r8a7779.c         |   22 +++++++++++-----------
 2 files changed, 12 insertions(+), 12 deletions(-)

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

* [PATCH 1/2] ARM: shmobile: armadillo800eva: __io abuse cleanup
  2012-10-17  4:36 ` Simon Horman
@ 2012-10-17  4:36   ` Simon Horman
  -1 siblings, 0 replies; 32+ messages in thread
From: Simon Horman @ 2012-10-17  4:36 UTC (permalink / raw)
  To: linux-arm-kernel

From: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>

a2a47ca36642e3995e982957bc42678cf11ca6ac
(ARM: __io abuse cleanup) cleanuped __io() -> IOMEM(),
but armadillo800eva was a outside of a target,
since "merge window" timing issue.
This patch cleanup it.

Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Signed-off-by: Simon Horman <horms@verge.net.au>
---
 arch/arm/mach-shmobile/board-armadillo800eva.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/arm/mach-shmobile/board-armadillo800eva.c b/arch/arm/mach-shmobile/board-armadillo800eva.c
index 2912eab..3cc8b1c 100644
--- a/arch/arm/mach-shmobile/board-armadillo800eva.c
+++ b/arch/arm/mach-shmobile/board-armadillo800eva.c
@@ -1196,7 +1196,7 @@ static void __init eva_init(void)
 
 #ifdef CONFIG_CACHE_L2X0
 	/* Early BRESP enable, Shared attribute override enable, 32K*8way */
-	l2x0_init(__io(0xf0002000), 0x40440000, 0x82000fff);
+	l2x0_init(IOMEM(0xf0002000), 0x40440000, 0x82000fff);
 #endif
 
 	i2c_register_board_info(0, i2c0_devices, ARRAY_SIZE(i2c0_devices));
-- 
1.7.10.4


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

* [PATCH 1/2] ARM: shmobile: armadillo800eva: __io abuse cleanup
@ 2012-10-17  4:36   ` Simon Horman
  0 siblings, 0 replies; 32+ messages in thread
From: Simon Horman @ 2012-10-17  4:36 UTC (permalink / raw)
  To: linux-arm-kernel

From: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>

a2a47ca36642e3995e982957bc42678cf11ca6ac
(ARM: __io abuse cleanup) cleanuped __io() -> IOMEM(),
but armadillo800eva was a outside of a target,
since "merge window" timing issue.
This patch cleanup it.

Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Signed-off-by: Simon Horman <horms@verge.net.au>
---
 arch/arm/mach-shmobile/board-armadillo800eva.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/arm/mach-shmobile/board-armadillo800eva.c b/arch/arm/mach-shmobile/board-armadillo800eva.c
index 2912eab..3cc8b1c 100644
--- a/arch/arm/mach-shmobile/board-armadillo800eva.c
+++ b/arch/arm/mach-shmobile/board-armadillo800eva.c
@@ -1196,7 +1196,7 @@ static void __init eva_init(void)
 
 #ifdef CONFIG_CACHE_L2X0
 	/* Early BRESP enable, Shared attribute override enable, 32K*8way */
-	l2x0_init(__io(0xf0002000), 0x40440000, 0x82000fff);
+	l2x0_init(IOMEM(0xf0002000), 0x40440000, 0x82000fff);
 #endif
 
 	i2c_register_board_info(0, i2c0_devices, ARRAY_SIZE(i2c0_devices));
-- 
1.7.10.4

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

* [PATCH 2/2] ARM: shmobile: r8a7779: use __iomem pointers for MMIO
  2012-10-17  4:36 ` Simon Horman
@ 2012-10-17  4:36   ` Simon Horman
  -1 siblings, 0 replies; 32+ messages in thread
From: Simon Horman @ 2012-10-17  4:36 UTC (permalink / raw)
  To: linux-arm-kernel

From: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>

0a4b04dc299dfb691827a4001b3d8d7e443b71c9
(ARM: shmobile: use __iomem pointers for MMIO)
modified iomem pointers so that IOMEM() macro will be used,
but clock-r8a7779.c was out of target.
This patch fixes it up.

Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Signed-off-by: Simon Horman <horms@verge.net.au>
---
 arch/arm/mach-shmobile/clock-r8a7779.c |   22 +++++++++++-----------
 1 file changed, 11 insertions(+), 11 deletions(-)

diff --git a/arch/arm/mach-shmobile/clock-r8a7779.c b/arch/arm/mach-shmobile/clock-r8a7779.c
index 3cafb6a..37b2a31 100644
--- a/arch/arm/mach-shmobile/clock-r8a7779.c
+++ b/arch/arm/mach-shmobile/clock-r8a7779.c
@@ -24,17 +24,17 @@
 #include <linux/clkdev.h>
 #include <mach/common.h>
 
-#define FRQMR   0xffc80014
-#define MSTPCR0 0xffc80030
-#define MSTPCR1 0xffc80034
-#define MSTPCR3 0xffc8003c
-#define MSTPSR1 0xffc80044
-#define MSTPSR4 0xffc80048
-#define MSTPSR6 0xffc8004c
-#define MSTPCR4 0xffc80050
-#define MSTPCR5 0xffc80054
-#define MSTPCR6 0xffc80058
-#define MSTPCR7 0xffc80040
+#define FRQMR		IOMEM(0xffc80014)
+#define MSTPCR0		IOMEM(0xffc80030)
+#define MSTPCR1		IOMEM(0xffc80034)
+#define MSTPCR3		IOMEM(0xffc8003c)
+#define MSTPSR1		IOMEM(0xffc80044)
+#define MSTPSR4		IOMEM(0xffc80048)
+#define MSTPSR6		IOMEM(0xffc8004c)
+#define MSTPCR4		IOMEM(0xffc80050)
+#define MSTPCR5		IOMEM(0xffc80054)
+#define MSTPCR6		IOMEM(0xffc80058)
+#define MSTPCR7		IOMEM(0xffc80040)
 
 /* ioremap() through clock mapping mandatory to avoid
  * collision with ARM coherent DMA virtual memory range.
-- 
1.7.10.4


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

* [PATCH 2/2] ARM: shmobile: r8a7779: use __iomem pointers for MMIO
@ 2012-10-17  4:36   ` Simon Horman
  0 siblings, 0 replies; 32+ messages in thread
From: Simon Horman @ 2012-10-17  4:36 UTC (permalink / raw)
  To: linux-arm-kernel

From: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>

0a4b04dc299dfb691827a4001b3d8d7e443b71c9
(ARM: shmobile: use __iomem pointers for MMIO)
modified iomem pointers so that IOMEM() macro will be used,
but clock-r8a7779.c was out of target.
This patch fixes it up.

Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Signed-off-by: Simon Horman <horms@verge.net.au>
---
 arch/arm/mach-shmobile/clock-r8a7779.c |   22 +++++++++++-----------
 1 file changed, 11 insertions(+), 11 deletions(-)

diff --git a/arch/arm/mach-shmobile/clock-r8a7779.c b/arch/arm/mach-shmobile/clock-r8a7779.c
index 3cafb6a..37b2a31 100644
--- a/arch/arm/mach-shmobile/clock-r8a7779.c
+++ b/arch/arm/mach-shmobile/clock-r8a7779.c
@@ -24,17 +24,17 @@
 #include <linux/clkdev.h>
 #include <mach/common.h>
 
-#define FRQMR   0xffc80014
-#define MSTPCR0 0xffc80030
-#define MSTPCR1 0xffc80034
-#define MSTPCR3 0xffc8003c
-#define MSTPSR1 0xffc80044
-#define MSTPSR4 0xffc80048
-#define MSTPSR6 0xffc8004c
-#define MSTPCR4 0xffc80050
-#define MSTPCR5 0xffc80054
-#define MSTPCR6 0xffc80058
-#define MSTPCR7 0xffc80040
+#define FRQMR		IOMEM(0xffc80014)
+#define MSTPCR0		IOMEM(0xffc80030)
+#define MSTPCR1		IOMEM(0xffc80034)
+#define MSTPCR3		IOMEM(0xffc8003c)
+#define MSTPSR1		IOMEM(0xffc80044)
+#define MSTPSR4		IOMEM(0xffc80048)
+#define MSTPSR6		IOMEM(0xffc8004c)
+#define MSTPCR4		IOMEM(0xffc80050)
+#define MSTPCR5		IOMEM(0xffc80054)
+#define MSTPCR6		IOMEM(0xffc80058)
+#define MSTPCR7		IOMEM(0xffc80040)
 
 /* ioremap() through clock mapping mandatory to avoid
  * collision with ARM coherent DMA virtual memory range.
-- 
1.7.10.4

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

* Re: [GIT PULL] Renesas ARM-based SoC fixes for v3.7
  2012-10-17  4:36 ` Simon Horman
@ 2012-10-17  4:40   ` Simon Horman
  -1 siblings, 0 replies; 32+ messages in thread
From: Simon Horman @ 2012-10-17  4:40 UTC (permalink / raw)
  To: linux-arm-kernel

On Wed, Oct 17, 2012 at 01:36:23PM +0900, Simon Horman wrote:
> Hi Olof, Hi Arnd,
> 
> please consider the following fix for the KZM-A9-GT board for 3.6.

Sorry, cut-and paste error. The line above should read:

please consider the following fixes for 3.7.

> They both resolve fallout from recent IOMEM() changes.
> 
> ----------------------------------------------------------------
> The following changes since commit ddffeb8c4d0331609ef2581d84de4d763607bd37:
> 
>   Linux 3.7-rc1 (2012-10-14 14:41:04 -0700)
> 
> are available in the git repository at:
> 
>   git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git fixes
> 
> for you to fetch changes up to 11f93576b0b50bf391ffafa544b85e541f5e59a5:
> 
>   ARM: shmobile: r8a7779: use __iomem pointers for MMIO (2012-10-16 08:58:56 +0900)
> 
> ----------------------------------------------------------------
> Kuninori Morimoto (2):
>       ARM: shmobile: armadillo800eva: __io abuse cleanup
>       ARM: shmobile: r8a7779: use __iomem pointers for MMIO
> 
>  arch/arm/mach-shmobile/board-armadillo800eva.c |    2 +-
>  arch/arm/mach-shmobile/clock-r8a7779.c         |   22 +++++++++++-----------
>  2 files changed, 12 insertions(+), 12 deletions(-)
> --
> To unsubscribe from this list: send the line "unsubscribe linux-sh" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
> 

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

* [GIT PULL] Renesas ARM-based SoC fixes for v3.7
@ 2012-10-17  4:40   ` Simon Horman
  0 siblings, 0 replies; 32+ messages in thread
From: Simon Horman @ 2012-10-17  4:40 UTC (permalink / raw)
  To: linux-arm-kernel

On Wed, Oct 17, 2012 at 01:36:23PM +0900, Simon Horman wrote:
> Hi Olof, Hi Arnd,
> 
> please consider the following fix for the KZM-A9-GT board for 3.6.

Sorry, cut-and paste error. The line above should read:

please consider the following fixes for 3.7.

> They both resolve fallout from recent IOMEM() changes.
> 
> ----------------------------------------------------------------
> The following changes since commit ddffeb8c4d0331609ef2581d84de4d763607bd37:
> 
>   Linux 3.7-rc1 (2012-10-14 14:41:04 -0700)
> 
> are available in the git repository at:
> 
>   git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git fixes
> 
> for you to fetch changes up to 11f93576b0b50bf391ffafa544b85e541f5e59a5:
> 
>   ARM: shmobile: r8a7779: use __iomem pointers for MMIO (2012-10-16 08:58:56 +0900)
> 
> ----------------------------------------------------------------
> Kuninori Morimoto (2):
>       ARM: shmobile: armadillo800eva: __io abuse cleanup
>       ARM: shmobile: r8a7779: use __iomem pointers for MMIO
> 
>  arch/arm/mach-shmobile/board-armadillo800eva.c |    2 +-
>  arch/arm/mach-shmobile/clock-r8a7779.c         |   22 +++++++++++-----------
>  2 files changed, 12 insertions(+), 12 deletions(-)
> --
> To unsubscribe from this list: send the line "unsubscribe linux-sh" in
> the body of a message to majordomo at vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
> 

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

* Re: [GIT PULL] Renesas ARM-based SoC fixes for v3.7
  2012-10-17  4:40   ` Simon Horman
@ 2012-10-17 15:08     ` Olof Johansson
  -1 siblings, 0 replies; 32+ messages in thread
From: Olof Johansson @ 2012-10-17 15:08 UTC (permalink / raw)
  To: linux-arm-kernel

On Tue, Oct 16, 2012 at 9:40 PM, Simon Horman <horms@verge.net.au> wrote:
> On Wed, Oct 17, 2012 at 01:36:23PM +0900, Simon Horman wrote:
>> Hi Olof, Hi Arnd,
>>
>> please consider the following fix for the KZM-A9-GT board for 3.6.
>
> Sorry, cut-and paste error. The line above should read:
>
> please consider the following fixes for 3.7.
>
>> They both resolve fallout from recent IOMEM() changes.
>>
>> ----------------------------------------------------------------
>> The following changes since commit ddffeb8c4d0331609ef2581d84de4d763607bd37:
>>
>>   Linux 3.7-rc1 (2012-10-14 14:41:04 -0700)
>>
>> are available in the git repository at:
>>
>>   git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git fixes

Pulled into fixes, thanks!



-Olof

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

* [GIT PULL] Renesas ARM-based SoC fixes for v3.7
@ 2012-10-17 15:08     ` Olof Johansson
  0 siblings, 0 replies; 32+ messages in thread
From: Olof Johansson @ 2012-10-17 15:08 UTC (permalink / raw)
  To: linux-arm-kernel

On Tue, Oct 16, 2012 at 9:40 PM, Simon Horman <horms@verge.net.au> wrote:
> On Wed, Oct 17, 2012 at 01:36:23PM +0900, Simon Horman wrote:
>> Hi Olof, Hi Arnd,
>>
>> please consider the following fix for the KZM-A9-GT board for 3.6.
>
> Sorry, cut-and paste error. The line above should read:
>
> please consider the following fixes for 3.7.
>
>> They both resolve fallout from recent IOMEM() changes.
>>
>> ----------------------------------------------------------------
>> The following changes since commit ddffeb8c4d0331609ef2581d84de4d763607bd37:
>>
>>   Linux 3.7-rc1 (2012-10-14 14:41:04 -0700)
>>
>> are available in the git repository at:
>>
>>   git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git fixes

Pulled into fixes, thanks!



-Olof

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

* [GIT PULL] Renesas ARM-based SoC fixes for v3.7 #2
@ 2012-10-19  6:49   ` Simon Horman
  0 siblings, 0 replies; 32+ messages in thread
From: Simon Horman @ 2012-10-19  6:49 UTC (permalink / raw)
  To: linux-arm-kernel

Hi Olof, Hi Arnd,

please consider the following fix for the r8a7779 SoC for 3.6.
It resolves some more fallout from recent IOMEM() changes.

----------------------------------------------------------------
The following changes since commit 11f93576b0b50bf391ffafa544b85e541f5e59a5:

  ARM: shmobile: r8a7779: use __iomem pointers for MMIO (2012-10-16 08:58:56 +0900)

are available in the git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git fixes

for you to fetch changes up to ed7d132a634e7e4c3fa657363df5df39e7f768e4:

  ARM: shmobile: r8a7779: I/O address abuse cleanup (2012-10-19 15:39:38 +0900)

----------------------------------------------------------------
Kuninori Morimoto (1):
      ARM: shmobile: r8a7779: I/O address abuse cleanup

 arch/arm/mach-shmobile/setup-r8a7779.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)


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

* [GIT PULL] Renesas ARM-based SoC fixes for v3.7 #2
@ 2012-10-19  6:49   ` Simon Horman
  0 siblings, 0 replies; 32+ messages in thread
From: Simon Horman @ 2012-10-19  6:49 UTC (permalink / raw)
  To: linux-arm-kernel

Hi Olof, Hi Arnd,

please consider the following fix for the r8a7779 SoC for 3.6.
It resolves some more fallout from recent IOMEM() changes.

----------------------------------------------------------------
The following changes since commit 11f93576b0b50bf391ffafa544b85e541f5e59a5:

  ARM: shmobile: r8a7779: use __iomem pointers for MMIO (2012-10-16 08:58:56 +0900)

are available in the git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git fixes

for you to fetch changes up to ed7d132a634e7e4c3fa657363df5df39e7f768e4:

  ARM: shmobile: r8a7779: I/O address abuse cleanup (2012-10-19 15:39:38 +0900)

----------------------------------------------------------------
Kuninori Morimoto (1):
      ARM: shmobile: r8a7779: I/O address abuse cleanup

 arch/arm/mach-shmobile/setup-r8a7779.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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

* [PATCH] ARM: shmobile: r8a7779: I/O address abuse cleanup
  2012-10-19  6:49   ` Simon Horman
@ 2012-10-19  6:49     ` Simon Horman
  -1 siblings, 0 replies; 32+ messages in thread
From: Simon Horman @ 2012-10-19  6:49 UTC (permalink / raw)
  To: linux-arm-kernel

From: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>

a2a47ca36642e3995e982957bc42678cf11ca6ac
(ARM: __io abuse cleanup) cleanuped __io() -> IOMEM(),
but setup-r8a7779.c was out of target,
since it directly used (void __iomem __force *) instead of __io().
This patch cleanup it.

Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Signed-off-by: Simon Horman <horms@verge.net.au>
---
 arch/arm/mach-shmobile/setup-r8a7779.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/arm/mach-shmobile/setup-r8a7779.c b/arch/arm/mach-shmobile/setup-r8a7779.c
index 2917668..ebbffc2 100644
--- a/arch/arm/mach-shmobile/setup-r8a7779.c
+++ b/arch/arm/mach-shmobile/setup-r8a7779.c
@@ -247,7 +247,7 @@ void __init r8a7779_add_standard_devices(void)
 {
 #ifdef CONFIG_CACHE_L2X0
 	/* Early BRESP enable, Shared attribute override enable, 64K*16way */
-	l2x0_init((void __iomem __force *)(0xf0100000), 0x40470000, 0x82000fff);
+	l2x0_init(IOMEM(0xf0100000), 0x40470000, 0x82000fff);
 #endif
 	r8a7779_pm_init();
 
-- 
1.7.10.4


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

* [PATCH] ARM: shmobile: r8a7779: I/O address abuse cleanup
@ 2012-10-19  6:49     ` Simon Horman
  0 siblings, 0 replies; 32+ messages in thread
From: Simon Horman @ 2012-10-19  6:49 UTC (permalink / raw)
  To: linux-arm-kernel

From: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>

a2a47ca36642e3995e982957bc42678cf11ca6ac
(ARM: __io abuse cleanup) cleanuped __io() -> IOMEM(),
but setup-r8a7779.c was out of target,
since it directly used (void __iomem __force *) instead of __io().
This patch cleanup it.

Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Signed-off-by: Simon Horman <horms@verge.net.au>
---
 arch/arm/mach-shmobile/setup-r8a7779.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/arm/mach-shmobile/setup-r8a7779.c b/arch/arm/mach-shmobile/setup-r8a7779.c
index 2917668..ebbffc2 100644
--- a/arch/arm/mach-shmobile/setup-r8a7779.c
+++ b/arch/arm/mach-shmobile/setup-r8a7779.c
@@ -247,7 +247,7 @@ void __init r8a7779_add_standard_devices(void)
 {
 #ifdef CONFIG_CACHE_L2X0
 	/* Early BRESP enable, Shared attribute override enable, 64K*16way */
-	l2x0_init((void __iomem __force *)(0xf0100000), 0x40470000, 0x82000fff);
+	l2x0_init(IOMEM(0xf0100000), 0x40470000, 0x82000fff);
 #endif
 	r8a7779_pm_init();
 
-- 
1.7.10.4

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

* Re: [GIT PULL] Renesas ARM-based SoC fixes for v3.7 #2
  2012-10-19  6:49   ` Simon Horman
@ 2012-10-19  6:50     ` Simon Horman
  -1 siblings, 0 replies; 32+ messages in thread
From: Simon Horman @ 2012-10-19  6:50 UTC (permalink / raw)
  To: linux-arm-kernel

On Fri, Oct 19, 2012 at 03:49:19PM +0900, Simon Horman wrote:
> Hi Olof, Hi Arnd,
> 
> please consider the following fix for the r8a7779 SoC for 3.6.

Same typo as last time: s/3.6/3.7/

> It resolves some more fallout from recent IOMEM() changes.
> 
> ----------------------------------------------------------------
> The following changes since commit 11f93576b0b50bf391ffafa544b85e541f5e59a5:
> 
>   ARM: shmobile: r8a7779: use __iomem pointers for MMIO (2012-10-16 08:58:56 +0900)
> 
> are available in the git repository at:
> 
>   git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git fixes
> 
> for you to fetch changes up to ed7d132a634e7e4c3fa657363df5df39e7f768e4:
> 
>   ARM: shmobile: r8a7779: I/O address abuse cleanup (2012-10-19 15:39:38 +0900)
> 
> ----------------------------------------------------------------
> Kuninori Morimoto (1):
>       ARM: shmobile: r8a7779: I/O address abuse cleanup
> 
>  arch/arm/mach-shmobile/setup-r8a7779.c |    2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> --
> To unsubscribe from this list: send the line "unsubscribe linux-sh" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
> 

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

* [GIT PULL] Renesas ARM-based SoC fixes for v3.7 #2
@ 2012-10-19  6:50     ` Simon Horman
  0 siblings, 0 replies; 32+ messages in thread
From: Simon Horman @ 2012-10-19  6:50 UTC (permalink / raw)
  To: linux-arm-kernel

On Fri, Oct 19, 2012 at 03:49:19PM +0900, Simon Horman wrote:
> Hi Olof, Hi Arnd,
> 
> please consider the following fix for the r8a7779 SoC for 3.6.

Same typo as last time: s/3.6/3.7/

> It resolves some more fallout from recent IOMEM() changes.
> 
> ----------------------------------------------------------------
> The following changes since commit 11f93576b0b50bf391ffafa544b85e541f5e59a5:
> 
>   ARM: shmobile: r8a7779: use __iomem pointers for MMIO (2012-10-16 08:58:56 +0900)
> 
> are available in the git repository at:
> 
>   git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git fixes
> 
> for you to fetch changes up to ed7d132a634e7e4c3fa657363df5df39e7f768e4:
> 
>   ARM: shmobile: r8a7779: I/O address abuse cleanup (2012-10-19 15:39:38 +0900)
> 
> ----------------------------------------------------------------
> Kuninori Morimoto (1):
>       ARM: shmobile: r8a7779: I/O address abuse cleanup
> 
>  arch/arm/mach-shmobile/setup-r8a7779.c |    2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> --
> To unsubscribe from this list: send the line "unsubscribe linux-sh" in
> the body of a message to majordomo at vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
> 

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

* Re: [GIT PULL] Renesas ARM-based SoC fixes for v3.7 #2
  2012-10-19  6:49   ` Simon Horman
@ 2012-10-26 13:13     ` Arnd Bergmann
  -1 siblings, 0 replies; 32+ messages in thread
From: Arnd Bergmann @ 2012-10-26 13:13 UTC (permalink / raw)
  To: linux-arm-kernel

On Friday 19 October 2012, Simon Horman wrote:
> Hi Olof, Hi Arnd,
> 
> please consider the following fix for the r8a7779 SoC for 3.6.
> It resolves some more fallout from recent IOMEM() changes.

Merged into fixes branch now, sorry for the delay.

	Arnd

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

* [GIT PULL] Renesas ARM-based SoC fixes for v3.7 #2
@ 2012-10-26 13:13     ` Arnd Bergmann
  0 siblings, 0 replies; 32+ messages in thread
From: Arnd Bergmann @ 2012-10-26 13:13 UTC (permalink / raw)
  To: linux-arm-kernel

On Friday 19 October 2012, Simon Horman wrote:
> Hi Olof, Hi Arnd,
> 
> please consider the following fix for the r8a7779 SoC for 3.6.
> It resolves some more fallout from recent IOMEM() changes.

Merged into fixes branch now, sorry for the delay.

	Arnd

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

* [GIT PULL] Renesas ARM-based SoC fixes for v3.9
@ 2013-03-08 15:38   ` Simon Horman
  0 siblings, 0 replies; 32+ messages in thread
From: Simon Horman @ 2013-03-08 15:38 UTC (permalink / raw)
  To: linux-arm-kernel

Hi Olof, Hi Arnd,

The following changes since commit 6dbe51c251a327e012439c4772097a13df43c5b8:

  Linux 3.9-rc1 (2013-03-03 15:11:05 -0800)

are available in the git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git 

for you to fetch changes up to 44e9ac45754a182e8121bf137368452365d4cc4b:

  ARM: shmobile: marzen: Include mmc/host.h (2013-03-08 16:29:23 +0100)

----------------------------------------------------------------
Resolve a build failure present since v3.9-rc1

----------------------------------------------------------------
Simon Horman (1):
      ARM: shmobile: marzen: Include mmc/host.h

 arch/arm/mach-shmobile/board-marzen.c |    1 +
 1 file changed, 1 insertion(+)

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

* [GIT PULL] Renesas ARM-based SoC fixes for v3.9
@ 2013-03-08 15:38   ` Simon Horman
  0 siblings, 0 replies; 32+ messages in thread
From: Simon Horman @ 2013-03-08 15:38 UTC (permalink / raw)
  To: linux-arm-kernel

Hi Olof, Hi Arnd,

The following changes since commit 6dbe51c251a327e012439c4772097a13df43c5b8:

  Linux 3.9-rc1 (2013-03-03 15:11:05 -0800)

are available in the git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git 

for you to fetch changes up to 44e9ac45754a182e8121bf137368452365d4cc4b:

  ARM: shmobile: marzen: Include mmc/host.h (2013-03-08 16:29:23 +0100)

----------------------------------------------------------------
Resolve a build failure present since v3.9-rc1

----------------------------------------------------------------
Simon Horman (1):
      ARM: shmobile: marzen: Include mmc/host.h

 arch/arm/mach-shmobile/board-marzen.c |    1 +
 1 file changed, 1 insertion(+)

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

* [PATCH] ARM: shmobile: marzen: Include mmc/host.h
  2013-03-08 15:38   ` Simon Horman
@ 2013-03-08 15:38     ` Simon Horman
  -1 siblings, 0 replies; 32+ messages in thread
From: Simon Horman @ 2013-03-08 15:38 UTC (permalink / raw)
  To: linux-arm-kernel

mmc/host.h provides MMC_CAP_SD_HIGHSPEED which is used in board-marzen.c

This resolves a build problem observed when compiling with
"mmc: tmio: remove unused and deprecated symbols" applied.

Acked-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Signed-off-by: Simon Horman <horms+renesas@verge.net.au>
---
 arch/arm/mach-shmobile/board-marzen.c |    1 +
 1 file changed, 1 insertion(+)

diff --git a/arch/arm/mach-shmobile/board-marzen.c b/arch/arm/mach-shmobile/board-marzen.c
index cdcb799..fec49eb 100644
--- a/arch/arm/mach-shmobile/board-marzen.c
+++ b/arch/arm/mach-shmobile/board-marzen.c
@@ -32,6 +32,7 @@
 #include <linux/smsc911x.h>
 #include <linux/spi/spi.h>
 #include <linux/spi/sh_hspi.h>
+#include <linux/mmc/host.h>
 #include <linux/mmc/sh_mobile_sdhi.h>
 #include <linux/mfd/tmio.h>
 #include <linux/usb/otg.h>
-- 
1.7.10.4


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

* [PATCH] ARM: shmobile: marzen: Include mmc/host.h
@ 2013-03-08 15:38     ` Simon Horman
  0 siblings, 0 replies; 32+ messages in thread
From: Simon Horman @ 2013-03-08 15:38 UTC (permalink / raw)
  To: linux-arm-kernel

mmc/host.h provides MMC_CAP_SD_HIGHSPEED which is used in board-marzen.c

This resolves a build problem observed when compiling with
"mmc: tmio: remove unused and deprecated symbols" applied.

Acked-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Signed-off-by: Simon Horman <horms+renesas@verge.net.au>
---
 arch/arm/mach-shmobile/board-marzen.c |    1 +
 1 file changed, 1 insertion(+)

diff --git a/arch/arm/mach-shmobile/board-marzen.c b/arch/arm/mach-shmobile/board-marzen.c
index cdcb799..fec49eb 100644
--- a/arch/arm/mach-shmobile/board-marzen.c
+++ b/arch/arm/mach-shmobile/board-marzen.c
@@ -32,6 +32,7 @@
 #include <linux/smsc911x.h>
 #include <linux/spi/spi.h>
 #include <linux/spi/sh_hspi.h>
+#include <linux/mmc/host.h>
 #include <linux/mmc/sh_mobile_sdhi.h>
 #include <linux/mfd/tmio.h>
 #include <linux/usb/otg.h>
-- 
1.7.10.4

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

* Re: [GIT PULL] Renesas ARM-based SoC fixes for v3.9
  2013-03-08 15:38   ` Simon Horman
@ 2013-03-18 10:35     ` Simon Horman
  -1 siblings, 0 replies; 32+ messages in thread
From: Simon Horman @ 2013-03-18 10:35 UTC (permalink / raw)
  To: linux-arm-kernel

On Fri, Mar 08, 2013 at 04:38:23PM +0100, Simon Horman wrote:
> Hi Olof, Hi Arnd,
> 
> The following changes since commit 6dbe51c251a327e012439c4772097a13df43c5b8:
> 
>   Linux 3.9-rc1 (2013-03-03 15:11:05 -0800)
> 
> are available in the git repository at:
> 
>   git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git 
> 
> for you to fetch changes up to 44e9ac45754a182e8121bf137368452365d4cc4b:
> 
>   ARM: shmobile: marzen: Include mmc/host.h (2013-03-08 16:29:23 +0100)
> 
> ----------------------------------------------------------------
> Resolve a build failure present since v3.9-rc1
> 
> ----------------------------------------------------------------
> Simon Horman (1):
>       ARM: shmobile: marzen: Include mmc/host.h

Ping.

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

* [GIT PULL] Renesas ARM-based SoC fixes for v3.9
@ 2013-03-18 10:35     ` Simon Horman
  0 siblings, 0 replies; 32+ messages in thread
From: Simon Horman @ 2013-03-18 10:35 UTC (permalink / raw)
  To: linux-arm-kernel

On Fri, Mar 08, 2013 at 04:38:23PM +0100, Simon Horman wrote:
> Hi Olof, Hi Arnd,
> 
> The following changes since commit 6dbe51c251a327e012439c4772097a13df43c5b8:
> 
>   Linux 3.9-rc1 (2013-03-03 15:11:05 -0800)
> 
> are available in the git repository at:
> 
>   git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git 
> 
> for you to fetch changes up to 44e9ac45754a182e8121bf137368452365d4cc4b:
> 
>   ARM: shmobile: marzen: Include mmc/host.h (2013-03-08 16:29:23 +0100)
> 
> ----------------------------------------------------------------
> Resolve a build failure present since v3.9-rc1
> 
> ----------------------------------------------------------------
> Simon Horman (1):
>       ARM: shmobile: marzen: Include mmc/host.h

Ping.

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

* Re: [GIT PULL] Renesas ARM-based SoC fixes for v3.9
  2013-03-18 10:35     ` Simon Horman
@ 2013-03-18 10:57       ` Arnd Bergmann
  -1 siblings, 0 replies; 32+ messages in thread
From: Arnd Bergmann @ 2013-03-18 10:57 UTC (permalink / raw)
  To: linux-arm-kernel

On Monday 18 March 2013, Simon Horman wrote:
> On Fri, Mar 08, 2013 at 04:38:23PM +0100, Simon Horman wrote:
> > Hi Olof, Hi Arnd,
> > 
> > The following changes since commit 6dbe51c251a327e012439c4772097a13df43c5b8:
> > 
> >   Linux 3.9-rc1 (2013-03-03 15:11:05 -0800)
> > 
> > are available in the git repository at:
> > 
> >   git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git 
> > 
> > for you to fetch changes up to 44e9ac45754a182e8121bf137368452365d4cc4b:
> > 
> >   ARM: shmobile: marzen: Include mmc/host.h (2013-03-08 16:29:23 +0100)
> > 
> > ----------------------------------------------------------------
> > Resolve a build failure present since v3.9-rc1
> > 
> > ----------------------------------------------------------------
> > Simon Horman (1):
> >       ARM: shmobile: marzen: Include mmc/host.h
> 
> Ping.

Ah, just in time. I think I tried pulling from the URL you listed
above before, and git said "Already up-to-date.", so I didn't bother
to look further.

Upon closer inspection, you seem to have missed the tag name. I have
pulled your renesas-fixes-for-v3.9 tag into the arm-soc fixes branch
now and will include it in my pull request to Linus today.

	Arnd

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

* [GIT PULL] Renesas ARM-based SoC fixes for v3.9
@ 2013-03-18 10:57       ` Arnd Bergmann
  0 siblings, 0 replies; 32+ messages in thread
From: Arnd Bergmann @ 2013-03-18 10:57 UTC (permalink / raw)
  To: linux-arm-kernel

On Monday 18 March 2013, Simon Horman wrote:
> On Fri, Mar 08, 2013 at 04:38:23PM +0100, Simon Horman wrote:
> > Hi Olof, Hi Arnd,
> > 
> > The following changes since commit 6dbe51c251a327e012439c4772097a13df43c5b8:
> > 
> >   Linux 3.9-rc1 (2013-03-03 15:11:05 -0800)
> > 
> > are available in the git repository at:
> > 
> >   git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git 
> > 
> > for you to fetch changes up to 44e9ac45754a182e8121bf137368452365d4cc4b:
> > 
> >   ARM: shmobile: marzen: Include mmc/host.h (2013-03-08 16:29:23 +0100)
> > 
> > ----------------------------------------------------------------
> > Resolve a build failure present since v3.9-rc1
> > 
> > ----------------------------------------------------------------
> > Simon Horman (1):
> >       ARM: shmobile: marzen: Include mmc/host.h
> 
> Ping.

Ah, just in time. I think I tried pulling from the URL you listed
above before, and git said "Already up-to-date.", so I didn't bother
to look further.

Upon closer inspection, you seem to have missed the tag name. I have
pulled your renesas-fixes-for-v3.9 tag into the arm-soc fixes branch
now and will include it in my pull request to Linus today.

	Arnd

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

* Re: [GIT PULL] Renesas ARM-based SoC fixes for v3.9
  2013-03-18 10:57       ` Arnd Bergmann
@ 2013-03-19  2:16         ` Simon Horman
  -1 siblings, 0 replies; 32+ messages in thread
From: Simon Horman @ 2013-03-19  2:16 UTC (permalink / raw)
  To: linux-arm-kernel

On Mon, Mar 18, 2013 at 10:57:21AM +0000, Arnd Bergmann wrote:
> On Monday 18 March 2013, Simon Horman wrote:
> > On Fri, Mar 08, 2013 at 04:38:23PM +0100, Simon Horman wrote:
> > > Hi Olof, Hi Arnd,
> > > 
> > > The following changes since commit 6dbe51c251a327e012439c4772097a13df43c5b8:
> > > 
> > >   Linux 3.9-rc1 (2013-03-03 15:11:05 -0800)
> > > 
> > > are available in the git repository at:
> > > 
> > >   git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git 
> > > 
> > > for you to fetch changes up to 44e9ac45754a182e8121bf137368452365d4cc4b:
> > > 
> > >   ARM: shmobile: marzen: Include mmc/host.h (2013-03-08 16:29:23 +0100)
> > > 
> > > ----------------------------------------------------------------
> > > Resolve a build failure present since v3.9-rc1
> > > 
> > > ----------------------------------------------------------------
> > > Simon Horman (1):
> > >       ARM: shmobile: marzen: Include mmc/host.h
> > 
> > Ping.
> 
> Ah, just in time. I think I tried pulling from the URL you listed
> above before, and git said "Already up-to-date.", so I didn't bother
> to look further.
> 
> Upon closer inspection, you seem to have missed the tag name. I have
> pulled your renesas-fixes-for-v3.9 tag into the arm-soc fixes branch
> now and will include it in my pull request to Linus today.

Sorry about that. I must have sent the pull request before the
tag hit kernel.org and failed to notice that the tag was missing
from the above email message.

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

* [GIT PULL] Renesas ARM-based SoC fixes for v3.9
@ 2013-03-19  2:16         ` Simon Horman
  0 siblings, 0 replies; 32+ messages in thread
From: Simon Horman @ 2013-03-19  2:16 UTC (permalink / raw)
  To: linux-arm-kernel

On Mon, Mar 18, 2013 at 10:57:21AM +0000, Arnd Bergmann wrote:
> On Monday 18 March 2013, Simon Horman wrote:
> > On Fri, Mar 08, 2013 at 04:38:23PM +0100, Simon Horman wrote:
> > > Hi Olof, Hi Arnd,
> > > 
> > > The following changes since commit 6dbe51c251a327e012439c4772097a13df43c5b8:
> > > 
> > >   Linux 3.9-rc1 (2013-03-03 15:11:05 -0800)
> > > 
> > > are available in the git repository at:
> > > 
> > >   git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git 
> > > 
> > > for you to fetch changes up to 44e9ac45754a182e8121bf137368452365d4cc4b:
> > > 
> > >   ARM: shmobile: marzen: Include mmc/host.h (2013-03-08 16:29:23 +0100)
> > > 
> > > ----------------------------------------------------------------
> > > Resolve a build failure present since v3.9-rc1
> > > 
> > > ----------------------------------------------------------------
> > > Simon Horman (1):
> > >       ARM: shmobile: marzen: Include mmc/host.h
> > 
> > Ping.
> 
> Ah, just in time. I think I tried pulling from the URL you listed
> above before, and git said "Already up-to-date.", so I didn't bother
> to look further.
> 
> Upon closer inspection, you seem to have missed the tag name. I have
> pulled your renesas-fixes-for-v3.9 tag into the arm-soc fixes branch
> now and will include it in my pull request to Linus today.

Sorry about that. I must have sent the pull request before the
tag hit kernel.org and failed to notice that the tag was missing
from the above email message.

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

* Re: [GIT PULL] Renesas ARM-based SoC fixes for v3.9
  2013-03-19  2:16         ` Simon Horman
@ 2013-03-19  8:40           ` Arnd Bergmann
  -1 siblings, 0 replies; 32+ messages in thread
From: Arnd Bergmann @ 2013-03-19  8:40 UTC (permalink / raw)
  To: linux-arm-kernel

On Tuesday 19 March 2013, Simon Horman wrote:

> > 
> > Upon closer inspection, you seem to have missed the tag name. I have
> > pulled your renesas-fixes-for-v3.9 tag into the arm-soc fixes branch
> > now and will include it in my pull request to Linus today.
> 
> Sorry about that. I must have sent the pull request before the
> tag hit kernel.org and failed to notice that the tag was missing
> from the above email message.
> 

No worries, it made it in, and I just screwed up in a similar way
when sending a pull request to Linus ....

	Arnd

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

* [GIT PULL] Renesas ARM-based SoC fixes for v3.9
@ 2013-03-19  8:40           ` Arnd Bergmann
  0 siblings, 0 replies; 32+ messages in thread
From: Arnd Bergmann @ 2013-03-19  8:40 UTC (permalink / raw)
  To: linux-arm-kernel

On Tuesday 19 March 2013, Simon Horman wrote:

> > 
> > Upon closer inspection, you seem to have missed the tag name. I have
> > pulled your renesas-fixes-for-v3.9 tag into the arm-soc fixes branch
> > now and will include it in my pull request to Linus today.
> 
> Sorry about that. I must have sent the pull request before the
> tag hit kernel.org and failed to notice that the tag was missing
> from the above email message.
> 

No worries, it made it in, and I just screwed up in a similar way
when sending a pull request to Linus ....

	Arnd

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

* Re: [GIT PULL] Renesas ARM-based SoC fixes for v3.9
  2013-03-19  8:40           ` Arnd Bergmann
@ 2013-03-20 13:41             ` Simon Horman
  -1 siblings, 0 replies; 32+ messages in thread
From: Simon Horman @ 2013-03-20 13:41 UTC (permalink / raw)
  To: linux-arm-kernel

On Tue, Mar 19, 2013 at 08:40:40AM +0000, Arnd Bergmann wrote:
> On Tuesday 19 March 2013, Simon Horman wrote:
> 
> > > 
> > > Upon closer inspection, you seem to have missed the tag name. I have
> > > pulled your renesas-fixes-for-v3.9 tag into the arm-soc fixes branch
> > > now and will include it in my pull request to Linus today.
> > 
> > Sorry about that. I must have sent the pull request before the
> > tag hit kernel.org and failed to notice that the tag was missing
> > from the above email message.
> > 
> 
> No worries, it made it in, and I just screwed up in a similar way
> when sending a pull request to Linus ....

:^)

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

* [GIT PULL] Renesas ARM-based SoC fixes for v3.9
@ 2013-03-20 13:41             ` Simon Horman
  0 siblings, 0 replies; 32+ messages in thread
From: Simon Horman @ 2013-03-20 13:41 UTC (permalink / raw)
  To: linux-arm-kernel

On Tue, Mar 19, 2013 at 08:40:40AM +0000, Arnd Bergmann wrote:
> On Tuesday 19 March 2013, Simon Horman wrote:
> 
> > > 
> > > Upon closer inspection, you seem to have missed the tag name. I have
> > > pulled your renesas-fixes-for-v3.9 tag into the arm-soc fixes branch
> > > now and will include it in my pull request to Linus today.
> > 
> > Sorry about that. I must have sent the pull request before the
> > tag hit kernel.org and failed to notice that the tag was missing
> > from the above email message.
> > 
> 
> No worries, it made it in, and I just screwed up in a similar way
> when sending a pull request to Linus ....

:^)

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

end of thread, other threads:[~2013-03-20 13:41 UTC | newest]

Thread overview: 32+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-10-17  4:36 [GIT PULL] Renesas ARM-based SoC fixes for v3.7 Simon Horman
2012-10-17  4:36 ` Simon Horman
2012-10-17  4:36 ` [PATCH 1/2] ARM: shmobile: armadillo800eva: __io abuse cleanup Simon Horman
2012-10-17  4:36   ` Simon Horman
2012-10-17  4:36 ` [PATCH 2/2] ARM: shmobile: r8a7779: use __iomem pointers for MMIO Simon Horman
2012-10-17  4:36   ` Simon Horman
2012-10-17  4:40 ` [GIT PULL] Renesas ARM-based SoC fixes for v3.7 Simon Horman
2012-10-17  4:40   ` Simon Horman
2012-10-17 15:08   ` Olof Johansson
2012-10-17 15:08     ` Olof Johansson
2012-10-19  6:49 ` [GIT PULL] Renesas ARM-based SoC fixes for v3.7 #2 Simon Horman
2012-10-19  6:49   ` Simon Horman
2012-10-19  6:49   ` [PATCH] ARM: shmobile: r8a7779: I/O address abuse cleanup Simon Horman
2012-10-19  6:49     ` Simon Horman
2012-10-19  6:50   ` [GIT PULL] Renesas ARM-based SoC fixes for v3.7 #2 Simon Horman
2012-10-19  6:50     ` Simon Horman
2012-10-26 13:13   ` Arnd Bergmann
2012-10-26 13:13     ` Arnd Bergmann
2013-03-08 15:38 ` [GIT PULL] Renesas ARM-based SoC fixes for v3.9 Simon Horman
2013-03-08 15:38   ` Simon Horman
2013-03-08 15:38   ` [PATCH] ARM: shmobile: marzen: Include mmc/host.h Simon Horman
2013-03-08 15:38     ` Simon Horman
2013-03-18 10:35   ` [GIT PULL] Renesas ARM-based SoC fixes for v3.9 Simon Horman
2013-03-18 10:35     ` Simon Horman
2013-03-18 10:57     ` Arnd Bergmann
2013-03-18 10:57       ` Arnd Bergmann
2013-03-19  2:16       ` Simon Horman
2013-03-19  2:16         ` Simon Horman
2013-03-19  8:40         ` Arnd Bergmann
2013-03-19  8:40           ` Arnd Bergmann
2013-03-20 13:41           ` Simon Horman
2013-03-20 13:41             ` Simon Horman

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.