diff options
Diffstat (limited to 'arch/sparc/kernel/prom_common.c')
-rw-r--r-- | arch/sparc/kernel/prom_common.c | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/arch/sparc/kernel/prom_common.c b/arch/sparc/kernel/prom_common.c index 7b454f6413f..fe84d56b7c5 100644 --- a/arch/sparc/kernel/prom_common.c +++ b/arch/sparc/kernel/prom_common.c | |||
@@ -20,6 +20,7 @@ | |||
20 | #include <linux/mutex.h> | 20 | #include <linux/mutex.h> |
21 | #include <linux/slab.h> | 21 | #include <linux/slab.h> |
22 | #include <linux/of.h> | 22 | #include <linux/of.h> |
23 | #include <linux/of_pdt.h> | ||
23 | #include <asm/prom.h> | 24 | #include <asm/prom.h> |
24 | #include <asm/oplib.h> | 25 | #include <asm/oplib.h> |
25 | #include <asm/leon.h> | 26 | #include <asm/leon.h> |
@@ -119,4 +120,11 @@ EXPORT_SYMBOL(of_find_in_proplist); | |||
119 | 120 | ||
120 | unsigned int prom_early_allocated __initdata; | 121 | unsigned int prom_early_allocated __initdata; |
121 | 122 | ||
122 | #include "../../../drivers/of/pdt.c" | 123 | void __init prom_build_devicetree(void) |
124 | { | ||
125 | of_pdt_build_devicetree(prom_root_node); | ||
126 | of_console_init(); | ||
127 | |||
128 | pr_info("PROM: Built device tree with %u bytes of memory.\n", | ||
129 | prom_early_allocated); | ||
130 | } | ||