diff options
author | Timon Kruiper <timonkruiper@gmail.com> | 2022-05-02 18:53:44 +0200 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2022-05-03 00:59:35 +0200 |
commit | b046c82f7529e2bcec18ea9a112d7ecbcf009c41 (patch) | |
tree | 09a84193febcfe5e0a3e52e113a5bb513499f626 /Kernel | |
parent | b9944ca9054e73885ec0e877e6b43c79106f9e55 (diff) | |
download | serenity-b046c82f7529e2bcec18ea9a112d7ecbcf009c41.zip |
Kernel: Let Processor::is_initialized() of aarch64 return false
When calling dbgln(), the formatting code in AK/Format.h calls
Processor::is_initialized() to determine whether to add some text about
the current processor to the debug output. Instead of crashing, we just
return false, such that we can use dbgln() etc in the aarch64 Kernel.
Diffstat (limited to 'Kernel')
-rw-r--r-- | Kernel/Arch/aarch64/Processor.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Kernel/Arch/aarch64/Processor.h b/Kernel/Arch/aarch64/Processor.h index 2973f19d5f..d828964299 100644 --- a/Kernel/Arch/aarch64/Processor.h +++ b/Kernel/Arch/aarch64/Processor.h @@ -66,7 +66,6 @@ public: ALWAYS_INLINE static bool is_initialized() { - VERIFY_NOT_REACHED(); return false; } |