diff options
author | Stepan Moskovchenko <stepanm@codeaurora.org> | 2011-01-27 15:13:22 -0500 |
---|---|---|
committer | David Brown <davidb@codeaurora.org> | 2011-01-28 14:28:23 -0500 |
commit | 07a3cc4814f790354d4c7be2c9dc6143a714a07a (patch) | |
tree | 5ad3c572cbb4a9b0ef1280adc1fbdaf9830bb867 /arch/arm/mach-msm | |
parent | f689ac98777b8ca7278c1099dfc2ebecde397523 (diff) |
msm: Clean up useless ifdefs
Remove ifdefs that do nothing, either from having the code
between them previously removed, or from having been
accidentally added to the wrong file.
Signed-off-by: Stepan Moskovchenko <stepanm@codeaurora.org>
Signed-off-by: David Brown <davidb@codeaurora.org>
Diffstat (limited to 'arch/arm/mach-msm')
-rw-r--r-- | arch/arm/mach-msm/board-halibut.c | 2 | ||||
-rw-r--r-- | arch/arm/mach-msm/board-mahimahi.c | 2 | ||||
-rw-r--r-- | arch/arm/mach-msm/board-msm7x27.c | 8 | ||||
-rw-r--r-- | arch/arm/mach-msm/board-msm7x30.c | 6 | ||||
-rw-r--r-- | arch/arm/mach-msm/board-qsd8x50.c | 4 | ||||
-rw-r--r-- | arch/arm/mach-msm/board-sapphire.c | 2 | ||||
-rw-r--r-- | arch/arm/mach-msm/board-trout.c | 2 | ||||
-rw-r--r-- | arch/arm/mach-msm/include/mach/msm_iomap-7x00.h | 6 |
8 files changed, 0 insertions, 32 deletions
diff --git a/arch/arm/mach-msm/board-halibut.c b/arch/arm/mach-msm/board-halibut.c index 75dabb16c802..18a3c97bc863 100644 --- a/arch/arm/mach-msm/board-halibut.c +++ b/arch/arm/mach-msm/board-halibut.c | |||
@@ -93,8 +93,6 @@ static void __init halibut_map_io(void) | |||
93 | } | 93 | } |
94 | 94 | ||
95 | MACHINE_START(HALIBUT, "Halibut Board (QCT SURF7200A)") | 95 | MACHINE_START(HALIBUT, "Halibut Board (QCT SURF7200A)") |
96 | #ifdef CONFIG_MSM_DEBUG_UART | ||
97 | #endif | ||
98 | .boot_params = 0x10000100, | 96 | .boot_params = 0x10000100, |
99 | .fixup = halibut_fixup, | 97 | .fixup = halibut_fixup, |
100 | .map_io = halibut_map_io, | 98 | .map_io = halibut_map_io, |
diff --git a/arch/arm/mach-msm/board-mahimahi.c b/arch/arm/mach-msm/board-mahimahi.c index ef3ebf2f763b..7a9a03eb189c 100644 --- a/arch/arm/mach-msm/board-mahimahi.c +++ b/arch/arm/mach-msm/board-mahimahi.c | |||
@@ -74,8 +74,6 @@ static void __init mahimahi_map_io(void) | |||
74 | extern struct sys_timer msm_timer; | 74 | extern struct sys_timer msm_timer; |
75 | 75 | ||
76 | MACHINE_START(MAHIMAHI, "mahimahi") | 76 | MACHINE_START(MAHIMAHI, "mahimahi") |
77 | #ifdef CONFIG_MSM_DEBUG_UART | ||
78 | #endif | ||
79 | .boot_params = 0x20000100, | 77 | .boot_params = 0x20000100, |
80 | .fixup = mahimahi_fixup, | 78 | .fixup = mahimahi_fixup, |
81 | .map_io = mahimahi_map_io, | 79 | .map_io = mahimahi_map_io, |
diff --git a/arch/arm/mach-msm/board-msm7x27.c b/arch/arm/mach-msm/board-msm7x27.c index e7a76eff57d9..16d75807e3aa 100644 --- a/arch/arm/mach-msm/board-msm7x27.c +++ b/arch/arm/mach-msm/board-msm7x27.c | |||
@@ -130,8 +130,6 @@ static void __init msm7x2x_map_io(void) | |||
130 | } | 130 | } |
131 | 131 | ||
132 | MACHINE_START(MSM7X27_SURF, "QCT MSM7x27 SURF") | 132 | MACHINE_START(MSM7X27_SURF, "QCT MSM7x27 SURF") |
133 | #ifdef CONFIG_MSM_DEBUG_UART | ||
134 | #endif | ||
135 | .boot_params = PHYS_OFFSET + 0x100, | 133 | .boot_params = PHYS_OFFSET + 0x100, |
136 | .map_io = msm7x2x_map_io, | 134 | .map_io = msm7x2x_map_io, |
137 | .init_irq = msm7x2x_init_irq, | 135 | .init_irq = msm7x2x_init_irq, |
@@ -140,8 +138,6 @@ MACHINE_START(MSM7X27_SURF, "QCT MSM7x27 SURF") | |||
140 | MACHINE_END | 138 | MACHINE_END |
141 | 139 | ||
142 | MACHINE_START(MSM7X27_FFA, "QCT MSM7x27 FFA") | 140 | MACHINE_START(MSM7X27_FFA, "QCT MSM7x27 FFA") |
143 | #ifdef CONFIG_MSM_DEBUG_UART | ||
144 | #endif | ||
145 | .boot_params = PHYS_OFFSET + 0x100, | 141 | .boot_params = PHYS_OFFSET + 0x100, |
146 | .map_io = msm7x2x_map_io, | 142 | .map_io = msm7x2x_map_io, |
147 | .init_irq = msm7x2x_init_irq, | 143 | .init_irq = msm7x2x_init_irq, |
@@ -150,8 +146,6 @@ MACHINE_START(MSM7X27_FFA, "QCT MSM7x27 FFA") | |||
150 | MACHINE_END | 146 | MACHINE_END |
151 | 147 | ||
152 | MACHINE_START(MSM7X25_SURF, "QCT MSM7x25 SURF") | 148 | MACHINE_START(MSM7X25_SURF, "QCT MSM7x25 SURF") |
153 | #ifdef CONFIG_MSM_DEBUG_UART | ||
154 | #endif | ||
155 | .boot_params = PHYS_OFFSET + 0x100, | 149 | .boot_params = PHYS_OFFSET + 0x100, |
156 | .map_io = msm7x2x_map_io, | 150 | .map_io = msm7x2x_map_io, |
157 | .init_irq = msm7x2x_init_irq, | 151 | .init_irq = msm7x2x_init_irq, |
@@ -160,8 +154,6 @@ MACHINE_START(MSM7X25_SURF, "QCT MSM7x25 SURF") | |||
160 | MACHINE_END | 154 | MACHINE_END |
161 | 155 | ||
162 | MACHINE_START(MSM7X25_FFA, "QCT MSM7x25 FFA") | 156 | MACHINE_START(MSM7X25_FFA, "QCT MSM7x25 FFA") |
163 | #ifdef CONFIG_MSM_DEBUG_UART | ||
164 | #endif | ||
165 | .boot_params = PHYS_OFFSET + 0x100, | 157 | .boot_params = PHYS_OFFSET + 0x100, |
166 | .map_io = msm7x2x_map_io, | 158 | .map_io = msm7x2x_map_io, |
167 | .init_irq = msm7x2x_init_irq, | 159 | .init_irq = msm7x2x_init_irq, |
diff --git a/arch/arm/mach-msm/board-msm7x30.c b/arch/arm/mach-msm/board-msm7x30.c index 0707cc041f27..dc9fac107c6f 100644 --- a/arch/arm/mach-msm/board-msm7x30.c +++ b/arch/arm/mach-msm/board-msm7x30.c | |||
@@ -105,8 +105,6 @@ static void __init msm7x30_map_io(void) | |||
105 | } | 105 | } |
106 | 106 | ||
107 | MACHINE_START(MSM7X30_SURF, "QCT MSM7X30 SURF") | 107 | MACHINE_START(MSM7X30_SURF, "QCT MSM7X30 SURF") |
108 | #ifdef CONFIG_MSM_DEBUG_UART | ||
109 | #endif | ||
110 | .boot_params = PHYS_OFFSET + 0x100, | 108 | .boot_params = PHYS_OFFSET + 0x100, |
111 | .map_io = msm7x30_map_io, | 109 | .map_io = msm7x30_map_io, |
112 | .init_irq = msm7x30_init_irq, | 110 | .init_irq = msm7x30_init_irq, |
@@ -115,8 +113,6 @@ MACHINE_START(MSM7X30_SURF, "QCT MSM7X30 SURF") | |||
115 | MACHINE_END | 113 | MACHINE_END |
116 | 114 | ||
117 | MACHINE_START(MSM7X30_FFA, "QCT MSM7X30 FFA") | 115 | MACHINE_START(MSM7X30_FFA, "QCT MSM7X30 FFA") |
118 | #ifdef CONFIG_MSM_DEBUG_UART | ||
119 | #endif | ||
120 | .boot_params = PHYS_OFFSET + 0x100, | 116 | .boot_params = PHYS_OFFSET + 0x100, |
121 | .map_io = msm7x30_map_io, | 117 | .map_io = msm7x30_map_io, |
122 | .init_irq = msm7x30_init_irq, | 118 | .init_irq = msm7x30_init_irq, |
@@ -125,8 +121,6 @@ MACHINE_START(MSM7X30_FFA, "QCT MSM7X30 FFA") | |||
125 | MACHINE_END | 121 | MACHINE_END |
126 | 122 | ||
127 | MACHINE_START(MSM7X30_FLUID, "QCT MSM7X30 FLUID") | 123 | MACHINE_START(MSM7X30_FLUID, "QCT MSM7X30 FLUID") |
128 | #ifdef CONFIG_MSM_DEBUG_UART | ||
129 | #endif | ||
130 | .boot_params = PHYS_OFFSET + 0x100, | 124 | .boot_params = PHYS_OFFSET + 0x100, |
131 | .map_io = msm7x30_map_io, | 125 | .map_io = msm7x30_map_io, |
132 | .init_irq = msm7x30_init_irq, | 126 | .init_irq = msm7x30_init_irq, |
diff --git a/arch/arm/mach-msm/board-qsd8x50.c b/arch/arm/mach-msm/board-qsd8x50.c index 6dde8185205f..3edc4de7e542 100644 --- a/arch/arm/mach-msm/board-qsd8x50.c +++ b/arch/arm/mach-msm/board-qsd8x50.c | |||
@@ -116,8 +116,6 @@ static void __init qsd8x50_init(void) | |||
116 | } | 116 | } |
117 | 117 | ||
118 | MACHINE_START(QSD8X50_SURF, "QCT QSD8X50 SURF") | 118 | MACHINE_START(QSD8X50_SURF, "QCT QSD8X50 SURF") |
119 | #ifdef CONFIG_MSM_DEBUG_UART | ||
120 | #endif | ||
121 | .boot_params = PHYS_OFFSET + 0x100, | 119 | .boot_params = PHYS_OFFSET + 0x100, |
122 | .map_io = qsd8x50_map_io, | 120 | .map_io = qsd8x50_map_io, |
123 | .init_irq = qsd8x50_init_irq, | 121 | .init_irq = qsd8x50_init_irq, |
@@ -126,8 +124,6 @@ MACHINE_START(QSD8X50_SURF, "QCT QSD8X50 SURF") | |||
126 | MACHINE_END | 124 | MACHINE_END |
127 | 125 | ||
128 | MACHINE_START(QSD8X50A_ST1_5, "QCT QSD8X50A ST1.5") | 126 | MACHINE_START(QSD8X50A_ST1_5, "QCT QSD8X50A ST1.5") |
129 | #ifdef CONFIG_MSM_DEBUG_UART | ||
130 | #endif | ||
131 | .boot_params = PHYS_OFFSET + 0x100, | 127 | .boot_params = PHYS_OFFSET + 0x100, |
132 | .map_io = qsd8x50_map_io, | 128 | .map_io = qsd8x50_map_io, |
133 | .init_irq = qsd8x50_init_irq, | 129 | .init_irq = qsd8x50_init_irq, |
diff --git a/arch/arm/mach-msm/board-sapphire.c b/arch/arm/mach-msm/board-sapphire.c index 8919ffb17196..6781ca844f2c 100644 --- a/arch/arm/mach-msm/board-sapphire.c +++ b/arch/arm/mach-msm/board-sapphire.c | |||
@@ -105,8 +105,6 @@ static void __init sapphire_map_io(void) | |||
105 | 105 | ||
106 | MACHINE_START(SAPPHIRE, "sapphire") | 106 | MACHINE_START(SAPPHIRE, "sapphire") |
107 | /* Maintainer: Brian Swetland <swetland@google.com> */ | 107 | /* Maintainer: Brian Swetland <swetland@google.com> */ |
108 | #ifdef CONFIG_MSM_DEBUG_UART | ||
109 | #endif | ||
110 | .boot_params = PHYS_OFFSET + 0x100, | 108 | .boot_params = PHYS_OFFSET + 0x100, |
111 | .fixup = sapphire_fixup, | 109 | .fixup = sapphire_fixup, |
112 | .map_io = sapphire_map_io, | 110 | .map_io = sapphire_map_io, |
diff --git a/arch/arm/mach-msm/board-trout.c b/arch/arm/mach-msm/board-trout.c index 73f146066542..8448687f5a42 100644 --- a/arch/arm/mach-msm/board-trout.c +++ b/arch/arm/mach-msm/board-trout.c | |||
@@ -92,8 +92,6 @@ static void __init trout_map_io(void) | |||
92 | } | 92 | } |
93 | 93 | ||
94 | MACHINE_START(TROUT, "HTC Dream") | 94 | MACHINE_START(TROUT, "HTC Dream") |
95 | #ifdef CONFIG_MSM_DEBUG_UART | ||
96 | #endif | ||
97 | .boot_params = 0x10000100, | 95 | .boot_params = 0x10000100, |
98 | .fixup = trout_fixup, | 96 | .fixup = trout_fixup, |
99 | .map_io = trout_map_io, | 97 | .map_io = trout_map_io, |
diff --git a/arch/arm/mach-msm/include/mach/msm_iomap-7x00.h b/arch/arm/mach-msm/include/mach/msm_iomap-7x00.h index 1e75ed74f169..8f99d97615a0 100644 --- a/arch/arm/mach-msm/include/mach/msm_iomap-7x00.h +++ b/arch/arm/mach-msm/include/mach/msm_iomap-7x00.h | |||
@@ -126,10 +126,4 @@ | |||
126 | #define MSM_AD5_SIZE (SZ_1M*13) | 126 | #define MSM_AD5_SIZE (SZ_1M*13) |
127 | 127 | ||
128 | 128 | ||
129 | #if defined(CONFIG_ARCH_MSM7X30) | ||
130 | #define MSM_GCC_BASE IOMEM(0xF8009000) | ||
131 | #define MSM_GCC_PHYS 0xC0182000 | ||
132 | #define MSM_GCC_SIZE SZ_4K | ||
133 | #endif | ||
134 | |||
135 | #endif | 129 | #endif |