diff options
author | Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> | 2012-10-11 21:59:17 -0700 |
---|---|---|
committer | Simon Horman <horms@verge.net.au> | 2012-10-15 10:23:03 +0900 |
commit | bc8b2428e73ce19aecbf2aac3f5d4c844adb3216 (patch) | |
tree | b587af46db1aa180e92da673376bbffa60ac5018 /arch/arm | |
parent | ddffeb8c4d0331609ef2581d84de4d763607bd37 (diff) | |
download | blackbird-op-linux-bc8b2428e73ce19aecbf2aac3f5d4c844adb3216.tar.gz blackbird-op-linux-bc8b2428e73ce19aecbf2aac3f5d4c844adb3216.zip |
ARM: shmobile: armadillo800eva: __io abuse cleanup
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>
Diffstat (limited to 'arch/arm')
-rw-r--r-- | arch/arm/mach-shmobile/board-armadillo800eva.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-shmobile/board-armadillo800eva.c b/arch/arm/mach-shmobile/board-armadillo800eva.c index 2912eab3b967..3cc8b1c21da9 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)); |