From b0858b2a55814291bf822007a3a0c5aea5455a56 Mon Sep 17 00:00:00 2001 From: Nico Weber Date: Sun, 26 Sep 2021 21:46:28 -0400 Subject: [PATCH] Kernel: Fix a typo in a comment --- Kernel/Prekernel/Arch/aarch64/boot.S | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Kernel/Prekernel/Arch/aarch64/boot.S b/Kernel/Prekernel/Arch/aarch64/boot.S index f522debef6..c5eee1a801 100644 --- a/Kernel/Prekernel/Arch/aarch64/boot.S +++ b/Kernel/Prekernel/Arch/aarch64/boot.S @@ -16,7 +16,7 @@ start: cbnz x13, halt // Let stack start before .text for now. - // 512 kiB (0x8000) of stack are probably not sufficient, especially once we give the other cores some stack too, + // 512 kiB (0x80000) of stack are probably not sufficient, especially once we give the other cores some stack too, // but for now it's ok. ldr x14, =start mov sp, x14