aboutsummaryrefslogtreecommitdiffstats
path: root/arch/openrisc/mm/ioremap.c
diff options
context:
space:
mode:
authorStafford Horne <shorne@gmail.com>2016-04-03 19:14:49 +0900
committerStafford Horne <shorne@gmail.com>2016-12-12 23:10:00 +0900
commit266c7fad157265bb54d17db1c9545f2aaa488643 (patch)
tree9fd40c1afd0a49822b92babf032b42b9751dfb56 /arch/openrisc/mm/ioremap.c
parentopenrisc: remove the redundant of_platform_populate (diff)
downloadlinux-dev-266c7fad157265bb54d17db1c9545f2aaa488643.tar.xz
linux-dev-266c7fad157265bb54d17db1c9545f2aaa488643.zip
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 '')
-rw-r--r--arch/openrisc/mm/ioremap.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/arch/openrisc/mm/ioremap.c b/arch/openrisc/mm/ioremap.c
index fa60b81aee3e..8705a46218f9 100644
--- a/arch/openrisc/mm/ioremap.c
+++ b/arch/openrisc/mm/ioremap.c
@@ -124,11 +124,7 @@ pte_t __ref *pte_alloc_one_kernel(struct mm_struct *mm,
if (likely(mem_init_done)) {
pte = (pte_t *) __get_free_page(GFP_KERNEL);
} else {
- pte = (pte_t *) alloc_bootmem_low_pages(PAGE_SIZE);
-#if 0
- /* FIXME: use memblock... */
pte = (pte_t *) __va(memblock_alloc(PAGE_SIZE, PAGE_SIZE));
-#endif
}
if (pte)