From 9b27b0cd1a102669e8229fb71f0b97e307efca5e Mon Sep 17 00:00:00 2001 From: Marco Date: Wed, 3 Mar 2021 21:16:14 +0800 Subject: [PATCH] Kernel: init: Make comment clearer --- Kernel/init.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Kernel/init.cpp b/Kernel/init.cpp index 5e21279d2e..2dc3405779 100644 --- a/Kernel/init.cpp +++ b/Kernel/init.cpp @@ -100,8 +100,8 @@ namespace Kernel { [[noreturn]] static void init_stage2(void*); static void setup_serial_debug(); -// boot.S expects these functions precisely this this. We declare them here -// to ensure the signatures don't accidentally change. +// boot.S expects these functions to exactly have the following signatures. +// We declare them here to ensure their signatures don't accidentally change. extern "C" void init_finished(u32 cpu); extern "C" [[noreturn]] void init_ap(u32 cpu, Processor* processor_info); extern "C" [[noreturn]] void init();