diff options
Diffstat (limited to 'arch/sh/kernel/setup.c')
-rw-r--r-- | arch/sh/kernel/setup.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/arch/sh/kernel/setup.c b/arch/sh/kernel/setup.c index 8b0e69792cf4..3459e70eed72 100644 --- a/arch/sh/kernel/setup.c +++ b/arch/sh/kernel/setup.c | |||
@@ -421,6 +421,8 @@ void __init setup_arch(char **cmdline_p) | |||
421 | 421 | ||
422 | parse_early_param(); | 422 | parse_early_param(); |
423 | 423 | ||
424 | uncached_init(); | ||
425 | |||
424 | plat_early_device_setup(); | 426 | plat_early_device_setup(); |
425 | 427 | ||
426 | /* Let earlyprintk output early console messages */ | 428 | /* Let earlyprintk output early console messages */ |
@@ -449,17 +451,15 @@ void __init setup_arch(char **cmdline_p) | |||
449 | #ifdef CONFIG_DUMMY_CONSOLE | 451 | #ifdef CONFIG_DUMMY_CONSOLE |
450 | conswitchp = &dummy_con; | 452 | conswitchp = &dummy_con; |
451 | #endif | 453 | #endif |
454 | paging_init(); | ||
455 | pmb_init(); | ||
456 | |||
457 | ioremap_fixed_init(); | ||
452 | 458 | ||
453 | /* Perform the machine specific initialisation */ | 459 | /* Perform the machine specific initialisation */ |
454 | if (likely(sh_mv.mv_setup)) | 460 | if (likely(sh_mv.mv_setup)) |
455 | sh_mv.mv_setup(cmdline_p); | 461 | sh_mv.mv_setup(cmdline_p); |
456 | 462 | ||
457 | paging_init(); | ||
458 | |||
459 | #ifdef CONFIG_PMB_ENABLE | ||
460 | pmb_init(); | ||
461 | #endif | ||
462 | |||
463 | #ifdef CONFIG_SMP | 463 | #ifdef CONFIG_SMP |
464 | plat_smp_setup(); | 464 | plat_smp_setup(); |
465 | #endif | 465 | #endif |