diff options
author | Tejun Heo <tj@kernel.org> | 2011-12-08 22:22:09 +0400 |
---|---|---|
committer | Tejun Heo <tj@kernel.org> | 2011-12-08 22:22:09 +0400 |
commit | a2bf79e7dcc97b4e9654f273453f9264f49e41ff (patch) | |
tree | 8510184d6fe5915801690153342cc420b25cfff9 /arch/score/Kconfig | |
parent | ff38df377cfd23472fc0de63108781ad2388efbf (diff) | |
download | linux-a2bf79e7dcc97b4e9654f273453f9264f49e41ff.tar.xz |
score: Use HAVE_MEMBLOCK_NODE_MAP
score used early_node_map[] just to prime free_area_init_nodes(). Now
memblock can be used for the same purpose and early_node_map[] is
scheduled to be dropped. Use memblock instead.
Signed-off-by: Tejun Heo <tj@kernel.org>
Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Cc: Yinghai Lu <yinghai@kernel.org>
Cc: Chen Liqin <liqin.chen@sunplusct.com>
Cc: Lennox Wu <lennox.wu@gmail.com>
Diffstat (limited to 'arch/score/Kconfig')
-rw-r--r-- | arch/score/Kconfig | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/arch/score/Kconfig b/arch/score/Kconfig index df169e84db4e..e5ae12f48781 100644 --- a/arch/score/Kconfig +++ b/arch/score/Kconfig @@ -4,6 +4,9 @@ config SCORE def_bool y select HAVE_GENERIC_HARDIRQS select GENERIC_IRQ_SHOW + select HAVE_MEMBLOCK + select HAVE_MEMBLOCK_NODE_MAP + select ARCH_DISCARD_MEMBLOCK choice prompt "System type" |