diff options
author | Tony Lindgren <tony@atomide.com> | 2010-03-01 17:19:05 -0500 |
---|---|---|
committer | Tony Lindgren <tony@atomide.com> | 2010-03-01 17:19:05 -0500 |
commit | d702d12167a2c05a346f49aac7a311d597762495 (patch) | |
tree | baae42c299cce34d6df24b5d01f8b1d0b481bd9a /arch/arm/plat-omap | |
parent | 9418c65f9bd861d0f7e39aab9cfb3aa6f2275d11 (diff) | |
parent | ac0f6f927db539e03e1f3f61bcd4ed57d5cde7a9 (diff) |
Merge with mainline to remove plat-omap/Kconfig conflict
Conflicts:
arch/arm/plat-omap/Kconfig
Diffstat (limited to 'arch/arm/plat-omap')
-rw-r--r-- | arch/arm/plat-omap/Kconfig | 1 | ||||
-rw-r--r-- | arch/arm/plat-omap/include/plat/omap44xx.h | 1 | ||||
-rw-r--r-- | arch/arm/plat-omap/io.c | 2 |
3 files changed, 3 insertions, 1 deletions
diff --git a/arch/arm/plat-omap/Kconfig b/arch/arm/plat-omap/Kconfig index be9484a28b12..6da796ef82bd 100644 --- a/arch/arm/plat-omap/Kconfig +++ b/arch/arm/plat-omap/Kconfig | |||
@@ -31,6 +31,7 @@ config ARCH_OMAP3 | |||
31 | depends on ARCH_OMAP2PLUS | 31 | depends on ARCH_OMAP2PLUS |
32 | select CPU_V7 | 32 | select CPU_V7 |
33 | select USB_ARCH_HAS_EHCI | 33 | select USB_ARCH_HAS_EHCI |
34 | select ARM_L1_CACHE_SHIFT_6 | ||
34 | 35 | ||
35 | config ARCH_OMAP4 | 36 | config ARCH_OMAP4 |
36 | bool "TI OMAP4" | 37 | bool "TI OMAP4" |
diff --git a/arch/arm/plat-omap/include/plat/omap44xx.h b/arch/arm/plat-omap/include/plat/omap44xx.h index 8fc15d33089a..2302474a3748 100644 --- a/arch/arm/plat-omap/include/plat/omap44xx.h +++ b/arch/arm/plat-omap/include/plat/omap44xx.h | |||
@@ -40,6 +40,7 @@ | |||
40 | #define OMAP44XX_GIC_CPU_BASE 0x48240100 | 40 | #define OMAP44XX_GIC_CPU_BASE 0x48240100 |
41 | #define OMAP44XX_SCU_BASE 0x48240000 | 41 | #define OMAP44XX_SCU_BASE 0x48240000 |
42 | #define OMAP44XX_LOCAL_TWD_BASE 0x48240600 | 42 | #define OMAP44XX_LOCAL_TWD_BASE 0x48240600 |
43 | #define OMAP44XX_L2CACHE_BASE 0x48242000 | ||
43 | #define OMAP44XX_WKUPGEN_BASE 0x48281000 | 44 | #define OMAP44XX_WKUPGEN_BASE 0x48281000 |
44 | #define OMAP44XX_MCPDM_BASE 0x40132000 | 45 | #define OMAP44XX_MCPDM_BASE 0x40132000 |
45 | #define OMAP44XX_MCPDM_L3_BASE 0x49032000 | 46 | #define OMAP44XX_MCPDM_L3_BASE 0x49032000 |
diff --git a/arch/arm/plat-omap/io.c b/arch/arm/plat-omap/io.c index 2c494cf8e378..b0078cf96281 100644 --- a/arch/arm/plat-omap/io.c +++ b/arch/arm/plat-omap/io.c | |||
@@ -124,7 +124,7 @@ void __iomem *omap_ioremap(unsigned long p, size_t size, unsigned int type) | |||
124 | return XLATE(p, L4_EMU_44XX_PHYS, L4_EMU_44XX_VIRT); | 124 | return XLATE(p, L4_EMU_44XX_PHYS, L4_EMU_44XX_VIRT); |
125 | } | 125 | } |
126 | #endif | 126 | #endif |
127 | return __arm_ioremap(p, size, type); | 127 | return __arm_ioremap_caller(p, size, type, __builtin_return_address(0)); |
128 | } | 128 | } |
129 | EXPORT_SYMBOL(omap_ioremap); | 129 | EXPORT_SYMBOL(omap_ioremap); |
130 | 130 | ||