diff options
Diffstat (limited to 'arch/sh/mm/numa.c')
| -rw-r--r-- | arch/sh/mm/numa.c | 8 | 
1 files changed, 4 insertions, 4 deletions
diff --git a/arch/sh/mm/numa.c b/arch/sh/mm/numa.c index a2e645f64a37..3d85225b9e95 100644 --- a/arch/sh/mm/numa.c +++ b/arch/sh/mm/numa.c @@ -9,7 +9,7 @@   */  #include <linux/module.h>  #include <linux/bootmem.h> -#include <linux/lmb.h> +#include <linux/memblock.h>  #include <linux/mm.h>  #include <linux/numa.h>  #include <linux/pfn.h> @@ -39,12 +39,12 @@ void __init setup_bootmem_node(int nid, unsigned long start, unsigned long end)  	pmb_bolt_mapping((unsigned long)__va(start), start, end - start,  			 PAGE_KERNEL); -	lmb_add(start, end - start); +	memblock_add(start, end - start);  	__add_active_range(nid, start_pfn, end_pfn);  	/* Node-local pgdat */ -	NODE_DATA(nid) = __va(lmb_alloc_base(sizeof(struct pglist_data), +	NODE_DATA(nid) = __va(memblock_alloc_base(sizeof(struct pglist_data),  					     SMP_CACHE_BYTES, end));  	memset(NODE_DATA(nid), 0, sizeof(struct pglist_data)); @@ -54,7 +54,7 @@ void __init setup_bootmem_node(int nid, unsigned long start, unsigned long end)  	/* Node-local bootmap */  	bootmap_pages = bootmem_bootmap_pages(end_pfn - start_pfn); -	bootmem_paddr = lmb_alloc_base(bootmap_pages << PAGE_SHIFT, +	bootmem_paddr = memblock_alloc_base(bootmap_pages << PAGE_SHIFT,  				       PAGE_SIZE, end);  	init_bootmem_node(NODE_DATA(nid), bootmem_paddr >> PAGE_SHIFT,  			  start_pfn, end_pfn);  |