diff options
author | Rusty Russell <rusty@rustcorp.com.au> | 2015-03-04 19:19:17 -0500 |
---|---|---|
committer | Rusty Russell <rusty@rustcorp.com.au> | 2015-03-04 23:55:06 -0500 |
commit | 8dd928915a73bf95a727a46037964243eb1e042c (patch) | |
tree | 7be1a28772bac74533f3da27ffd41e048c76b8e4 /arch/mips/sgi-ip27/ip27-memory.c | |
parent | d089f8e97d371a662dd233491e03bda377c9d46d (diff) |
mips: fix up obsolete cpu function usage.
Thanks to spatch, plus manual removal of "&*". Then a sweep for
for_each_cpu_mask => for_each_cpu.
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
Cc: Ralf Baechle <ralf@linux-mips.org>
Cc: Kevin Cernekee <cernekee@gmail.com>
Cc: Florian Fainelli <f.fainelli@gmail.com>
Cc: linux-mips@linux-mips.org
Diffstat (limited to 'arch/mips/sgi-ip27/ip27-memory.c')
-rw-r--r-- | arch/mips/sgi-ip27/ip27-memory.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/mips/sgi-ip27/ip27-memory.c b/arch/mips/sgi-ip27/ip27-memory.c index 0b68469e063f..8d0eb2643248 100644 --- a/arch/mips/sgi-ip27/ip27-memory.c +++ b/arch/mips/sgi-ip27/ip27-memory.c | |||
@@ -404,7 +404,7 @@ static void __init node_mem_init(cnodeid_t node) | |||
404 | NODE_DATA(node)->node_start_pfn = start_pfn; | 404 | NODE_DATA(node)->node_start_pfn = start_pfn; |
405 | NODE_DATA(node)->node_spanned_pages = end_pfn - start_pfn; | 405 | NODE_DATA(node)->node_spanned_pages = end_pfn - start_pfn; |
406 | 406 | ||
407 | cpus_clear(hub_data(node)->h_cpus); | 407 | cpumask_clear(&hub_data(node)->h_cpus); |
408 | 408 | ||
409 | slot_freepfn += PFN_UP(sizeof(struct pglist_data) + | 409 | slot_freepfn += PFN_UP(sizeof(struct pglist_data) + |
410 | sizeof(struct hub_data)); | 410 | sizeof(struct hub_data)); |