aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-omap2/io.c
diff options
context:
space:
mode:
authorTony Lindgren <tony@atomide.com>2006-12-07 16:58:10 -0500
committerRussell King <rmk+kernel@arm.linux.org.uk>2007-05-08 15:36:31 -0400
commitc40fae9525e6c29c87a4f4361ff0a8d67a36e448 (patch)
tree00c3e0008b3e963c5a622245b951f1135e456c24 /arch/arm/mach-omap2/io.c
parentf4e4c324a5f81f18156499d1ade3732ba1f5b523 (diff)
ARM: OMAP: Sync core code with linux-omap
This patch syncs omap specific core code with linux-omap. Most of the changes are needed to fix bitrot caused by driver updates in linux-omap tree. Signed-off-by: Tony Lindgren <tony@atomide.com> Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'arch/arm/mach-omap2/io.c')
-rw-r--r--arch/arm/mach-omap2/io.c18
1 files changed, 15 insertions, 3 deletions
diff --git a/arch/arm/mach-omap2/io.c b/arch/arm/mach-omap2/io.c
index a0728c33e5d..59458642e9e 100644
--- a/arch/arm/mach-omap2/io.c
+++ b/arch/arm/mach-omap2/io.c
@@ -40,9 +40,21 @@ static struct map_desc omap2_io_desc[] __initdata = {
40 .type = MT_DEVICE 40 .type = MT_DEVICE
41 }, 41 },
42 { 42 {
43 .virtual = L4_24XX_VIRT, 43 .virtual = DSP_MEM_24XX_VIRT,
44 .pfn = __phys_to_pfn(L4_24XX_PHYS), 44 .pfn = __phys_to_pfn(DSP_MEM_24XX_PHYS),
45 .length = L4_24XX_SIZE, 45 .length = DSP_MEM_24XX_SIZE,
46 .type = MT_DEVICE
47 },
48 {
49 .virtual = DSP_IPI_24XX_VIRT,
50 .pfn = __phys_to_pfn(DSP_IPI_24XX_PHYS),
51 .length = DSP_IPI_24XX_SIZE,
52 .type = MT_DEVICE
53 },
54 {
55 .virtual = DSP_MMU_24XX_VIRT,
56 .pfn = __phys_to_pfn(DSP_MMU_24XX_PHYS),
57 .length = DSP_MMU_24XX_SIZE,
46 .type = MT_DEVICE 58 .type = MT_DEVICE
47 } 59 }
48}; 60};