diff options
author | Olof Johansson <olof@lixom.net> | 2012-09-22 17:09:21 -0400 |
---|---|---|
committer | Olof Johansson <olof@lixom.net> | 2012-09-22 17:22:47 -0400 |
commit | 0d601f613b8557cf6489f06251ae5dc383b811d0 (patch) | |
tree | 05f3a4d054e0bddc308af479918ce67cd02e8eba /arch/arm/mach-mv78xx0/addr-map.c | |
parent | d7ffa2234c186ce040e79b43639628c1c482b115 (diff) | |
parent | 5b40baee4a39d96d4d6a48a2b2383982912c429b (diff) |
Merge branch 'kirkwood/addr_decode' of git://git.infradead.org/users/jcooper/linux into late/kirkwood
* 'kirkwood/addr_decode' of git://git.infradead.org/users/jcooper/linux:
arm: mvebu: add address decoding controller to the DT
arm: mvebu: add basic address decoding support to Armada 370/XP
arm: plat-orion: make bridge_virt_base non-const to support DT use case
arm: plat-orion: introduce PLAT_ORION_LEGACY hidden config option
arm: plat-orion: use void __iomem pointers for addr-map functions
arm: plat-orion: use void __iomem pointers for time functions
arm: plat-orion: use void __iomem pointers for MPP functions
arm: plat-orion: use void __iomem pointers for UART registration functions
arm: mach-mvebu: use IOMEM() for base address definitions
arm: mach-orion5x: use IOMEM() for base address definitions
arm: mach-mv78xx0: use IOMEM() for base address definitions
arm: mach-kirkwood: use IOMEM() for base address definitions
arm: mach-dove: use IOMEM() for base address definitions
arm: mach-orion5x: use plus instead of or for address definitions
arm: mach-mv78xx0: use plus instead of or for address definitions
arm: mach-kirkwood: use plus instead of or for address definitions
arm: mach-dove: use plus instead of or for address definitions
This branch had quite a few conflicts, in particular with the PCI static
map rework from Rob Herring, and a few other context conflicts due to
changes in Kconfig, etc.
I fixed up conflicts in:
arch/arm/Kconfig
arch/arm/mach-dove/common.c
arch/arm/mach-dove/include/mach/dove.h
arch/arm/mach-kirkwood/common.c
arch/arm/mach-kirkwood/include/mach/kirkwood.h
arch/arm/mach-mv78xx0/common.c
arch/arm/mach-mv78xx0/include/mach/mv78xx0.h
arch/arm/mach-orion5x/common.c
arch/arm/mach-orion5x/include/mach/orion5x.h
Signed-off-by: Olof Johansson <olof@lixom.net>
Diffstat (limited to 'arch/arm/mach-mv78xx0/addr-map.c')
-rw-r--r-- | arch/arm/mach-mv78xx0/addr-map.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/arm/mach-mv78xx0/addr-map.c b/arch/arm/mach-mv78xx0/addr-map.c index 137e479d15a0..343c435b4176 100644 --- a/arch/arm/mach-mv78xx0/addr-map.c +++ b/arch/arm/mach-mv78xx0/addr-map.c | |||
@@ -48,7 +48,7 @@ static void __init __iomem *win_cfg_base(const struct orion_addr_map_cfg *cfg, i | |||
48 | * so we don't need to take that into account here. | 48 | * so we don't need to take that into account here. |
49 | */ | 49 | */ |
50 | 50 | ||
51 | return (void __iomem *)((win < 8) ? WIN0_OFF(win) : WIN8_OFF(win)); | 51 | return (win < 8) ? WIN0_OFF(win) : WIN8_OFF(win); |
52 | } | 52 | } |
53 | 53 | ||
54 | /* | 54 | /* |
@@ -72,10 +72,10 @@ void __init mv78xx0_setup_cpu_mbus(void) | |||
72 | */ | 72 | */ |
73 | if (mv78xx0_core_index() == 0) | 73 | if (mv78xx0_core_index() == 0) |
74 | orion_setup_cpu_mbus_target(&addr_map_cfg, | 74 | orion_setup_cpu_mbus_target(&addr_map_cfg, |
75 | DDR_WINDOW_CPU0_BASE); | 75 | (void __iomem *) DDR_WINDOW_CPU0_BASE); |
76 | else | 76 | else |
77 | orion_setup_cpu_mbus_target(&addr_map_cfg, | 77 | orion_setup_cpu_mbus_target(&addr_map_cfg, |
78 | DDR_WINDOW_CPU1_BASE); | 78 | (void __iomem *) DDR_WINDOW_CPU1_BASE); |
79 | } | 79 | } |
80 | 80 | ||
81 | void __init mv78xx0_setup_pcie_io_win(int window, u32 base, u32 size, | 81 | void __init mv78xx0_setup_pcie_io_win(int window, u32 base, u32 size, |