aboutsummaryrefslogtreecommitdiffstats
path: root/arch/openrisc/mm/init.c
diff options
context:
space:
mode:
authorStafford Horne <shorne@gmail.com>2016-04-03 06:14:49 -0400
committerStafford Horne <shorne@gmail.com>2016-12-12 09:10:00 -0500
commit266c7fad157265bb54d17db1c9545f2aaa488643 (patch)
tree9fd40c1afd0a49822b92babf032b42b9751dfb56 /arch/openrisc/mm/init.c
parent994894c3f710f5d8ca89d22988fe715db57bbc87 (diff)
openrisc: Consolidate setup to use memblock instead of bootmem
Clearing out one todo item. Use the memblock boot time memory which is the current standard. Tested-by: Guenter Roeck <linux@roeck-us.net> Acked-by: Jonas <jonas@southpole.se> Signed-off-by: Stafford Horne <shorne@gmail.com>
Diffstat (limited to 'arch/openrisc/mm/init.c')
-rw-r--r--arch/openrisc/mm/init.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/openrisc/mm/init.c b/arch/openrisc/mm/init.c
index b782ce9ccad9..f67d82b9d22f 100644
--- a/arch/openrisc/mm/init.c
+++ b/arch/openrisc/mm/init.c
@@ -106,7 +106,7 @@ static void __init map_ram(void)
106 } 106 }
107 107
108 /* Alloc one page for holding PTE's... */ 108 /* Alloc one page for holding PTE's... */
109 pte = (pte_t *) alloc_bootmem_low_pages(PAGE_SIZE); 109 pte = (pte_t *) __va(memblock_alloc(PAGE_SIZE, PAGE_SIZE));
110 set_pmd(pme, __pmd(_KERNPG_TABLE + __pa(pte))); 110 set_pmd(pme, __pmd(_KERNPG_TABLE + __pa(pte)));
111 111
112 /* Fill the newly allocated page with PTE'S */ 112 /* Fill the newly allocated page with PTE'S */