1
0
Fork 0

arm64: use linux/sizes.h for constants

Use linux/size.h to improve code readability.

Signed-off-by: Miles Chen <miles.chen@mediatek.com>
Signed-off-by: Will Deacon <will.deacon@arm.com>
hifive-unleashed-5.1
Miles Chen 2017-02-09 09:52:03 +08:00 committed by Will Deacon
parent 76624175dc
commit ffe3d1e43c
1 changed files with 2 additions and 2 deletions

View File

@ -407,7 +407,7 @@ unsigned long arch_align_stack(unsigned long sp)
unsigned long arch_randomize_brk(struct mm_struct *mm)
{
if (is_compat_task())
return randomize_page(mm->brk, 0x02000000);
return randomize_page(mm->brk, SZ_32M);
else
return randomize_page(mm->brk, 0x40000000);
return randomize_page(mm->brk, SZ_1G);
}