aboutsummaryrefslogtreecommitdiffstats
path: root/arch/score/mm/init.c
diff options
context:
space:
mode:
Diffstat (limited to 'arch/score/mm/init.c')
-rw-r--r--arch/score/mm/init.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/arch/score/mm/init.c b/arch/score/mm/init.c
index d496e9f1a601..4e3dcd0c4716 100644
--- a/arch/score/mm/init.c
+++ b/arch/score/mm/init.c
@@ -144,7 +144,8 @@ void free_initrd_mem(unsigned long start, unsigned long end)
144void __init_refok free_initmem(void) 144void __init_refok free_initmem(void)
145{ 145{
146 free_init_pages("unused kernel memory", 146 free_init_pages("unused kernel memory",
147 (unsigned long)__init_begin, (unsigned long)__init_end); 147 __pa(&__init_begin),
148 __pa(&__init_end));
148} 149}
149 150
150unsigned long pgd_current; 151unsigned long pgd_current;
@@ -156,4 +157,5 @@ unsigned long pgd_current;
156 * are constants. So we use the variants from asm-offset.h until that gcc 157 * are constants. So we use the variants from asm-offset.h until that gcc
157 * will officially be retired. 158 * will officially be retired.
158 */ 159 */
160pgd_t swapper_pg_dir[PTRS_PER_PGD] __page_aligned(PTE_ORDER);
159pte_t invalid_pte_table[PTRS_PER_PTE] __page_aligned(PTE_ORDER); 161pte_t invalid_pte_table[PTRS_PER_PTE] __page_aligned(PTE_ORDER);