diff options
author | Russell King <rmk@dyn-67.arm.linux.org.uk> | 2008-09-07 07:45:01 -0400 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2008-10-01 11:41:07 -0400 |
commit | 9b727abdff93b0039fba94e96216fc280af4cf01 (patch) | |
tree | cc181330961178dc77149d3cb6ee950b115e463f /arch/arm | |
parent | db5b7169474882fabbd811a4cf5c1bae3157e677 (diff) |
[ARM] Remove MT_NONSHARED_DEVICE alias
Use MT_DEVICE_NONSHARED instead.
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'arch/arm')
-rw-r--r-- | arch/arm/include/asm/mach/map.h | 2 | ||||
-rw-r--r-- | arch/arm/mach-mx3/mm.c | 2 | ||||
-rw-r--r-- | arch/arm/mach-mx3/mx31ads.c | 6 | ||||
-rw-r--r-- | arch/arm/mach-mx3/mx31lite.c | 6 |
4 files changed, 7 insertions, 9 deletions
diff --git a/arch/arm/include/asm/mach/map.h b/arch/arm/include/asm/mach/map.h index 72586cd4372e..cb1139ac1943 100644 --- a/arch/arm/include/asm/mach/map.h +++ b/arch/arm/include/asm/mach/map.h | |||
@@ -26,8 +26,6 @@ struct map_desc { | |||
26 | #define MT_MEMORY 8 | 26 | #define MT_MEMORY 8 |
27 | #define MT_ROM 9 | 27 | #define MT_ROM 9 |
28 | 28 | ||
29 | #define MT_NONSHARED_DEVICE MT_DEVICE_NONSHARED | ||
30 | |||
31 | #ifdef CONFIG_MMU | 29 | #ifdef CONFIG_MMU |
32 | extern void iotable_init(struct map_desc *, int); | 30 | extern void iotable_init(struct map_desc *, int); |
33 | #else | 31 | #else |
diff --git a/arch/arm/mach-mx3/mm.c b/arch/arm/mach-mx3/mm.c index 30d842bd4d64..0589b5cd33c7 100644 --- a/arch/arm/mach-mx3/mm.c +++ b/arch/arm/mach-mx3/mm.c | |||
@@ -49,7 +49,7 @@ static struct map_desc mxc_io_desc[] __initdata = { | |||
49 | .virtual = AVIC_BASE_ADDR_VIRT, | 49 | .virtual = AVIC_BASE_ADDR_VIRT, |
50 | .pfn = __phys_to_pfn(AVIC_BASE_ADDR), | 50 | .pfn = __phys_to_pfn(AVIC_BASE_ADDR), |
51 | .length = AVIC_SIZE, | 51 | .length = AVIC_SIZE, |
52 | .type = MT_NONSHARED_DEVICE | 52 | .type = MT_DEVICE_NONSHARED |
53 | }, | 53 | }, |
54 | }; | 54 | }; |
55 | 55 | ||
diff --git a/arch/arm/mach-mx3/mx31ads.c b/arch/arm/mach-mx3/mx31ads.c index 60fb4e0d5acd..0cd90a9667c8 100644 --- a/arch/arm/mach-mx3/mx31ads.c +++ b/arch/arm/mach-mx3/mx31ads.c | |||
@@ -92,17 +92,17 @@ static struct map_desc mx31ads_io_desc[] __initdata = { | |||
92 | .virtual = AIPS1_BASE_ADDR_VIRT, | 92 | .virtual = AIPS1_BASE_ADDR_VIRT, |
93 | .pfn = __phys_to_pfn(AIPS1_BASE_ADDR), | 93 | .pfn = __phys_to_pfn(AIPS1_BASE_ADDR), |
94 | .length = AIPS1_SIZE, | 94 | .length = AIPS1_SIZE, |
95 | .type = MT_NONSHARED_DEVICE | 95 | .type = MT_DEVICE_NONSHARED |
96 | }, { | 96 | }, { |
97 | .virtual = SPBA0_BASE_ADDR_VIRT, | 97 | .virtual = SPBA0_BASE_ADDR_VIRT, |
98 | .pfn = __phys_to_pfn(SPBA0_BASE_ADDR), | 98 | .pfn = __phys_to_pfn(SPBA0_BASE_ADDR), |
99 | .length = SPBA0_SIZE, | 99 | .length = SPBA0_SIZE, |
100 | .type = MT_NONSHARED_DEVICE | 100 | .type = MT_DEVICE_NONSHARED |
101 | }, { | 101 | }, { |
102 | .virtual = AIPS2_BASE_ADDR_VIRT, | 102 | .virtual = AIPS2_BASE_ADDR_VIRT, |
103 | .pfn = __phys_to_pfn(AIPS2_BASE_ADDR), | 103 | .pfn = __phys_to_pfn(AIPS2_BASE_ADDR), |
104 | .length = AIPS2_SIZE, | 104 | .length = AIPS2_SIZE, |
105 | .type = MT_NONSHARED_DEVICE | 105 | .type = MT_DEVICE_NONSHARED |
106 | }, { | 106 | }, { |
107 | .virtual = CS4_BASE_ADDR_VIRT, | 107 | .virtual = CS4_BASE_ADDR_VIRT, |
108 | .pfn = __phys_to_pfn(CS4_BASE_ADDR), | 108 | .pfn = __phys_to_pfn(CS4_BASE_ADDR), |
diff --git a/arch/arm/mach-mx3/mx31lite.c b/arch/arm/mach-mx3/mx31lite.c index d363a6e79f80..c43440070143 100644 --- a/arch/arm/mach-mx3/mx31lite.c +++ b/arch/arm/mach-mx3/mx31lite.c | |||
@@ -45,17 +45,17 @@ static struct map_desc mx31lite_io_desc[] __initdata = { | |||
45 | .virtual = AIPS1_BASE_ADDR_VIRT, | 45 | .virtual = AIPS1_BASE_ADDR_VIRT, |
46 | .pfn = __phys_to_pfn(AIPS1_BASE_ADDR), | 46 | .pfn = __phys_to_pfn(AIPS1_BASE_ADDR), |
47 | .length = AIPS1_SIZE, | 47 | .length = AIPS1_SIZE, |
48 | .type = MT_NONSHARED_DEVICE | 48 | .type = MT_DEVICE_NONSHARED |
49 | }, { | 49 | }, { |
50 | .virtual = SPBA0_BASE_ADDR_VIRT, | 50 | .virtual = SPBA0_BASE_ADDR_VIRT, |
51 | .pfn = __phys_to_pfn(SPBA0_BASE_ADDR), | 51 | .pfn = __phys_to_pfn(SPBA0_BASE_ADDR), |
52 | .length = SPBA0_SIZE, | 52 | .length = SPBA0_SIZE, |
53 | .type = MT_NONSHARED_DEVICE | 53 | .type = MT_DEVICE_NONSHARED |
54 | }, { | 54 | }, { |
55 | .virtual = AIPS2_BASE_ADDR_VIRT, | 55 | .virtual = AIPS2_BASE_ADDR_VIRT, |
56 | .pfn = __phys_to_pfn(AIPS2_BASE_ADDR), | 56 | .pfn = __phys_to_pfn(AIPS2_BASE_ADDR), |
57 | .length = AIPS2_SIZE, | 57 | .length = AIPS2_SIZE, |
58 | .type = MT_NONSHARED_DEVICE | 58 | .type = MT_DEVICE_NONSHARED |
59 | }, { | 59 | }, { |
60 | .virtual = CS4_BASE_ADDR_VIRT, | 60 | .virtual = CS4_BASE_ADDR_VIRT, |
61 | .pfn = __phys_to_pfn(CS4_BASE_ADDR), | 61 | .pfn = __phys_to_pfn(CS4_BASE_ADDR), |