aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--arch/openrisc/kernel/prom.c15
1 files changed, 1 insertions, 14 deletions
diff --git a/arch/openrisc/kernel/prom.c b/arch/openrisc/kernel/prom.c
index 3b94972e52b2..fbed459ea365 100644
--- a/arch/openrisc/kernel/prom.c
+++ b/arch/openrisc/kernel/prom.c
@@ -55,20 +55,7 @@ void __init early_init_dt_add_memory_arch(u64 base, u64 size)
55 55
56void __init early_init_devtree(void *params) 56void __init early_init_devtree(void *params)
57{ 57{
58 /* Setup flat device-tree pointer */ 58 early_init_dt_scan(params);
59 initial_boot_params = params;
60
61
62 /* Retrieve various informations from the /chosen node of the
63 * device-tree, including the platform type, initrd location and
64 * size, TCE reserve, and more ...
65 */
66 of_scan_flat_dt(early_init_dt_scan_chosen, boot_command_line);
67
68 /* Scan memory nodes and rebuild MEMBLOCKs */
69 of_scan_flat_dt(early_init_dt_scan_root, NULL);
70 of_scan_flat_dt(early_init_dt_scan_memory, NULL);
71
72 memblock_allow_resize(); 59 memblock_allow_resize();
73} 60}
74 61