diff options
author | Dezhong Diao <dediao@cisco.com> | 2010-10-13 02:52:46 -0400 |
---|---|---|
committer | Grant Likely <grant.likely@secretlab.ca> | 2010-10-21 13:10:10 -0400 |
commit | f2ffa5ab74f4dfd598860f96ca37a71c4d0a28a8 (patch) | |
tree | be560fcb0633ab1e7c4cc0ff9e016e82f33c5712 /arch/mips/kernel/setup.c | |
parent | 32c97689c46b272302053778f1a6c2facb0e220c (diff) |
of/mips: Add device tree support to MIPS
Add the ability to enable CONFIG_OF on the MIPS architecture.
Signed-off-by: Dezhong Diao <dediao@cisco.com>
[grant.likely@secretlab.ca: cleared out obsolete hooks,
removed ARCH_HAS_DEVTREE_MEM,
remove __init tags from header file,
removed debugfs support hunk]
[ddaney@linux-mips.org: backed out over aggressive trimming of hooks]
Acked-by: Ralf Baechle <ralf@linux-mips.org>
Tested-by: David Daney <ddaney@caviumnetworks.com>
Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
Diffstat (limited to 'arch/mips/kernel/setup.c')
-rw-r--r-- | arch/mips/kernel/setup.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/mips/kernel/setup.c b/arch/mips/kernel/setup.c index 85aef3fc6716..a6b900f2962b 100644 --- a/arch/mips/kernel/setup.c +++ b/arch/mips/kernel/setup.c | |||
@@ -31,6 +31,7 @@ | |||
31 | #include <asm/setup.h> | 31 | #include <asm/setup.h> |
32 | #include <asm/smp-ops.h> | 32 | #include <asm/smp-ops.h> |
33 | #include <asm/system.h> | 33 | #include <asm/system.h> |
34 | #include <asm/prom.h> | ||
34 | 35 | ||
35 | struct cpuinfo_mips cpu_data[NR_CPUS] __read_mostly; | 36 | struct cpuinfo_mips cpu_data[NR_CPUS] __read_mostly; |
36 | 37 | ||
@@ -487,6 +488,7 @@ static void __init arch_mem_init(char **cmdline_p) | |||
487 | } | 488 | } |
488 | 489 | ||
489 | bootmem_init(); | 490 | bootmem_init(); |
491 | device_tree_init(); | ||
490 | sparse_init(); | 492 | sparse_init(); |
491 | paging_init(); | 493 | paging_init(); |
492 | } | 494 | } |