summaryrefslogtreecommitdiff
path: root/Kernel/TTY
diff options
context:
space:
mode:
authorLiav A <liavalb@gmail.com>2022-10-04 03:05:54 +0300
committerAndreas Kling <kling@serenityos.org>2022-12-28 11:53:41 +0100
commit5ff318cf3ac7d12470c357ba0bac8cd7ffa10e3e (patch)
tree36b3982d64e9602e80f990ed86790d8868827998 /Kernel/TTY
parent32270dcd20344ae2cd753232634cdcd4f0a4300e (diff)
downloadserenity-5ff318cf3ac7d12470c357ba0bac8cd7ffa10e3e.zip
Kernel: Remove i686 support
Diffstat (limited to 'Kernel/TTY')
-rw-r--r--Kernel/TTY/VirtualConsole.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/Kernel/TTY/VirtualConsole.cpp b/Kernel/TTY/VirtualConsole.cpp
index a1ee9a77fc..ddb6e8c311 100644
--- a/Kernel/TTY/VirtualConsole.cpp
+++ b/Kernel/TTY/VirtualConsole.cpp
@@ -8,7 +8,7 @@
#include <AK/StdLibExtras.h>
#include <Kernel/Arch/Delay.h>
-#if ARCH(I386) || ARCH(X86_64)
+#if ARCH(X86_64)
# include <Kernel/Arch/x86/common/PCSpeaker.h>
#endif
#include <Kernel/CommandLine.h>
@@ -329,7 +329,7 @@ void VirtualConsole::beep()
{
if (!kernel_command_line().is_pc_speaker_enabled())
return;
-#if ARCH(I386) || ARCH(X86_64)
+#if ARCH(X86_64)
PCSpeaker::tone_on(440);
microseconds_delay(10000);
PCSpeaker::tone_off();