aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-omap2/devices.c
diff options
context:
space:
mode:
authorChristoph Egger <siccegge@cs.fau.de>2010-07-05 09:31:54 -0400
committerTony Lindgren <tony@atomide.com>2010-07-05 10:03:58 -0400
commitdf8d481df912b73fadbff03759cb1b257a37e277 (patch)
tree86c78cfdc3e5b6e59c679c5bca7176ce81e538f4 /arch/arm/mach-omap2/devices.c
parentab6f7751905e5cf713d081dbb3b97b8f6909ab34 (diff)
Removing dead OMAP_STI
OMAP_STI doesn't exist in Kconfig, therefore removing all references for it from the source code. Signed-off-by: Christoph Egger <siccegge@cs.fau.de> Signed-off-by: Tony Lindgren <tony@atomide.com>
Diffstat (limited to 'arch/arm/mach-omap2/devices.c')
-rw-r--r--arch/arm/mach-omap2/devices.c57
1 files changed, 0 insertions, 57 deletions
diff --git a/arch/arm/mach-omap2/devices.c b/arch/arm/mach-omap2/devices.c
index 3ae9d0a477b6..162a9be3cbb1 100644
--- a/arch/arm/mach-omap2/devices.c
+++ b/arch/arm/mach-omap2/devices.c
@@ -229,64 +229,7 @@ static inline void omap_init_mbox(void)
229static inline void omap_init_mbox(void) { } 229static inline void omap_init_mbox(void) { }
230#endif /* CONFIG_OMAP_MBOX_FWK */ 230#endif /* CONFIG_OMAP_MBOX_FWK */
231 231
232#if defined(CONFIG_OMAP_STI)
233
234#if defined(CONFIG_ARCH_OMAP2)
235
236#define OMAP2_STI_BASE 0x48068000
237#define OMAP2_STI_CHANNEL_BASE 0x54000000
238#define OMAP2_STI_IRQ 4
239
240static struct resource sti_resources[] = {
241 {
242 .start = OMAP2_STI_BASE,
243 .end = OMAP2_STI_BASE + 0x7ff,
244 .flags = IORESOURCE_MEM,
245 },
246 {
247 .start = OMAP2_STI_CHANNEL_BASE,
248 .end = OMAP2_STI_CHANNEL_BASE + SZ_64K - 1,
249 .flags = IORESOURCE_MEM,
250 },
251 {
252 .start = OMAP2_STI_IRQ,
253 .flags = IORESOURCE_IRQ,
254 }
255};
256#elif defined(CONFIG_ARCH_OMAP3)
257
258#define OMAP3_SDTI_BASE 0x54500000
259#define OMAP3_SDTI_CHANNEL_BASE 0x54600000
260
261static struct resource sti_resources[] = {
262 {
263 .start = OMAP3_SDTI_BASE,
264 .end = OMAP3_SDTI_BASE + 0xFFF,
265 .flags = IORESOURCE_MEM,
266 },
267 {
268 .start = OMAP3_SDTI_CHANNEL_BASE,
269 .end = OMAP3_SDTI_CHANNEL_BASE + SZ_1M - 1,
270 .flags = IORESOURCE_MEM,
271 }
272};
273
274#endif
275
276static struct platform_device sti_device = {
277 .name = "sti",
278 .id = -1,
279 .num_resources = ARRAY_SIZE(sti_resources),
280 .resource = sti_resources,
281};
282
283static inline void omap_init_sti(void)
284{
285 platform_device_register(&sti_device);
286}
287#else
288static inline void omap_init_sti(void) {} 232static inline void omap_init_sti(void) {}
289#endif
290 233
291#if defined(CONFIG_SPI_OMAP24XX) || defined(CONFIG_SPI_OMAP24XX_MODULE) 234#if defined(CONFIG_SPI_OMAP24XX) || defined(CONFIG_SPI_OMAP24XX_MODULE)
292 235