public inbox for linux-arm-kernel@lists.infradead.org 
 help / color / mirror / Atom feed
* [GIT PULL] Renesas ARM-based SoC fixes for v3.7 #2
@ 2012-10-19  6:49 Simon Horman
  2012-10-19  6:49 ` [PATCH] ARM: shmobile: r8a7779: I/O address abuse cleanup Simon Horman
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ 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] 4+ messages in thread

* [PATCH] ARM: shmobile: r8a7779: I/O address abuse cleanup
  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:50 ` [GIT PULL] Renesas ARM-based SoC fixes for v3.7 #2 Simon Horman
  2012-10-26 13:13 ` Arnd Bergmann
  2 siblings, 0 replies; 4+ 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] 4+ messages in thread

* [GIT PULL] Renesas ARM-based SoC fixes for v3.7 #2
  2012-10-19  6:49 [GIT PULL] Renesas ARM-based SoC fixes for v3.7 #2 Simon Horman
  2012-10-19  6:49 ` [PATCH] ARM: shmobile: r8a7779: I/O address abuse cleanup Simon Horman
@ 2012-10-19  6:50 ` Simon Horman
  2012-10-26 13:13 ` Arnd Bergmann
  2 siblings, 0 replies; 4+ 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] 4+ messages in thread

* [GIT PULL] Renesas ARM-based SoC fixes for v3.7 #2
  2012-10-19  6:49 [GIT PULL] Renesas ARM-based SoC fixes for v3.7 #2 Simon Horman
  2012-10-19  6:49 ` [PATCH] ARM: shmobile: r8a7779: I/O address abuse cleanup Simon Horman
  2012-10-19  6:50 ` [GIT PULL] Renesas ARM-based SoC fixes for v3.7 #2 Simon Horman
@ 2012-10-26 13:13 ` Arnd Bergmann
  2 siblings, 0 replies; 4+ 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] 4+ messages in thread

end of thread, other threads:[~2012-10-26 13:13 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-10-19  6:49 [GIT PULL] Renesas ARM-based SoC fixes for v3.7 #2 Simon Horman
2012-10-19  6:49 ` [PATCH] ARM: shmobile: r8a7779: I/O address abuse cleanup Simon Horman
2012-10-19  6:50 ` [GIT PULL] Renesas ARM-based SoC fixes for v3.7 #2 Simon Horman
2012-10-26 13:13 ` Arnd Bergmann

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox