diff options
author | Ian Moffett <ian@osmora.org> | 2023-12-12 10:34:09 -0500 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2023-12-12 10:34:09 -0500 |
commit | 43d599539c1f543dafbc4fc806af9e62f9d705bb (patch) | |
tree | cc11639ccf82af2d99263b4600d2938c2370cd28 | |
parent | 30495d6f06108864c151e744ec1aad98e70c3334 (diff) |
kernel/amd64: machdep: Fixup comment clarity
Signed-off-by: Ian Moffett <ian@osmora.org>
-rw-r--r-- | sys/arch/amd64/machdep.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/arch/amd64/machdep.c b/sys/arch/amd64/machdep.c index a466d38..9a81c25 100644 --- a/sys/arch/amd64/machdep.c +++ b/sys/arch/amd64/machdep.c @@ -102,7 +102,7 @@ processor_init(void) init_tss(cur_cpu); CPU_INFO_UNLOCK(cur_cpu); - /* Enable spectre mitigation if enabled */ + /* Use spectre mitigation if enabled */ if (try_spectre_mitigate != NULL) try_spectre_mitigate(); } |