aboutsummaryrefslogtreecommitdiffstats
path: root/arch/blackfin/kernel/setup.c
diff options
context:
space:
mode:
Diffstat (limited to 'arch/blackfin/kernel/setup.c')
-rw-r--r--arch/blackfin/kernel/setup.c20
1 files changed, 2 insertions, 18 deletions
diff --git a/arch/blackfin/kernel/setup.c b/arch/blackfin/kernel/setup.c
index c456ee5c1b4..b6ac6f8067b 100644
--- a/arch/blackfin/kernel/setup.c
+++ b/arch/blackfin/kernel/setup.c
@@ -383,35 +383,19 @@ void __init setup_arch(char **cmdline_p)
383 383
384 bf53x_cache_init(); 384 bf53x_cache_init();
385 385
386#if defined(CONFIG_SMC91X) || defined(CONFIG_SMC91X_MODULE)
387# if defined(CONFIG_BFIN_SHARED_FLASH_ENET) && defined(CONFIG_BFIN533_STAMP)
388 /* setup BF533_STAMP CPLD to route AMS3 to Ethernet MAC */
389 bfin_write_FIO_DIR(bfin_read_FIO_DIR() | (1 << CONFIG_ENET_FLASH_PIN));
390 bfin_write_FIO_FLAG_S(1 << CONFIG_ENET_FLASH_PIN);
391 SSYNC();
392# endif
393# if defined (CONFIG_BFIN561_EZKIT)
394 bfin_write_FIO0_DIR(bfin_read_FIO0_DIR() | (1 << 12));
395 SSYNC();
396# endif /* defined (CONFIG_BFIN561_EZKIT) */
397#endif
398
399 printk(KERN_INFO "Hardware Trace Enabled\n"); 386 printk(KERN_INFO "Hardware Trace Enabled\n");
400 bfin_write_TBUFCTL(0x03); 387 bfin_write_TBUFCTL(0x03);
401} 388}
402 389
403#if defined(CONFIG_BF561)
404static struct cpu cpu[2];
405#else
406static struct cpu cpu[1];
407#endif
408static int __init topology_init(void) 390static int __init topology_init(void)
409{ 391{
410#if defined (CONFIG_BF561) 392#if defined (CONFIG_BF561)
393 static struct cpu cpu[2];
411 register_cpu(&cpu[0], 0); 394 register_cpu(&cpu[0], 0);
412 register_cpu(&cpu[1], 1); 395 register_cpu(&cpu[1], 1);
413 return 0; 396 return 0;
414#else 397#else
398 static struct cpu cpu[1];
415 return register_cpu(cpu, 0); 399 return register_cpu(cpu, 0);
416#endif 400#endif
417} 401}