From 8812a892211544d0b11fb3b532c62f68a8c9bc15 Mon Sep 17 00:00:00 2001 From: Nathan Royer Date: Wed, 6 Sep 2023 15:44:54 +0200 Subject: [PATCH] aarch64: fix context switch setup comment --- kernel/context_switch_regular/src/aarch64.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kernel/context_switch_regular/src/aarch64.rs b/kernel/context_switch_regular/src/aarch64.rs index 4c7f66c9bc..8e8bb1b6a3 100644 --- a/kernel/context_switch_regular/src/aarch64.rs +++ b/kernel/context_switch_regular/src/aarch64.rs @@ -40,7 +40,7 @@ impl ContextRegular { // it's used by the `ret` instruction x30_link_register: start_address, - // interrupts are initially masked/disabled + // interrupts are initially unmasked/enabled pstate: 0, } }