]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
arm64: Update comment regarding values in __boot_cpu_mode
authorBen Horgan <ben.horgan@arm.com>
Tue, 13 May 2025 12:45:25 +0000 (13:45 +0100)
committerWill Deacon <will@kernel.org>
Fri, 16 May 2025 14:12:21 +0000 (15:12 +0100)
The values stored in __boot_cpu_mode were changed without updating the
comment. Rectify that.

Signed-off-by: Ben Horgan <ben.horgan@arm.com>
Reviewed-by: Dave Martin <Dave.Martin@arm.com>
Link: https://lore.kernel.org/r/20250513124525.677736-1-ben.horgan@arm.com
Signed-off-by: Will Deacon <will@kernel.org>
arch/arm64/include/asm/virt.h

index ebf4a9f943ed92049111bd0bc71811c1f33d0222..aa280f356b96a4f62d2b8f89cf8fbfae5249c271 100644 (file)
@@ -67,7 +67,8 @@
  * __boot_cpu_mode records what mode CPUs were booted in.
  * A correctly-implemented bootloader must start all CPUs in the same mode:
  * In this case, both 32bit halves of __boot_cpu_mode will contain the
- * same value (either 0 if booted in EL1, BOOT_CPU_MODE_EL2 if booted in EL2).
+ * same value (either BOOT_CPU_MODE_EL1 if booted in EL1, BOOT_CPU_MODE_EL2 if
+ * booted in EL2).
  *
  * Should the bootloader fail to do this, the two values will be different.
  * This allows the kernel to flag an error when the secondaries have come up.