diff options
author | David Rientjes <rientjes@google.com> | 2011-12-08 07:46:37 -0500 |
---|---|---|
committer | Benjamin Herrenschmidt <benh@kernel.crashing.org> | 2011-12-18 22:41:18 -0500 |
commit | 2011b1d0d31ae469c7a075061e03b7d4f5b49ba6 (patch) | |
tree | c96f73a8dafe4c298842bb6896073841c2520cbe | |
parent | 28e86bdbc9863d3d81711db02abedbc54528099e (diff) |
powerpc/mm: Fix section mismatch for read_n_cells
read_n_cells() cannot be marked as .devinit.text since it is referenced
from two functions that are not in that section: of_get_lmb_size() and
hot_add_drconf_scn_to_nid().
Signed-off-by: David Rientjes <rientjes@google.com>
Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
-rw-r--r-- | arch/powerpc/mm/numa.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/powerpc/mm/numa.c b/arch/powerpc/mm/numa.c index 8bb0b4d938d9..542156637487 100644 --- a/arch/powerpc/mm/numa.c +++ b/arch/powerpc/mm/numa.c | |||
@@ -406,7 +406,7 @@ static void __init get_n_mem_cells(int *n_addr_cells, int *n_size_cells) | |||
406 | of_node_put(memory); | 406 | of_node_put(memory); |
407 | } | 407 | } |
408 | 408 | ||
409 | static unsigned long __devinit read_n_cells(int n, const unsigned int **buf) | 409 | static unsigned long read_n_cells(int n, const unsigned int **buf) |
410 | { | 410 | { |
411 | unsigned long result = 0; | 411 | unsigned long result = 0; |
412 | 412 | ||