summaryrefslogtreecommitdiffhomepage
path: root/dev
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal.elmahrouss@icloud.com>2024-08-23 19:51:31 +0200
committerAmlal El Mahrouss <amlal.elmahrouss@icloud.com>2024-08-23 19:51:31 +0200
commit10dab767dba0ff4d0641222d771f990b09cd5a14 (patch)
tree92e4308174273084760a707f9491be5f17c39647 /dev
parentbac8c9a8306e1582ef24ba68a412a29674c97775 (diff)
[ARM64] Just remove the undefined KeMain symbol from the file.
Signed-off-by: Amlal El Mahrouss <amlal.elmahrouss@icloud.com>
Diffstat (limited to 'dev')
-rw-r--r--dev/ZKA/HALKit/ARM64/HalKernelMain.cxx9
1 files changed, 0 insertions, 9 deletions
diff --git a/dev/ZKA/HALKit/ARM64/HalKernelMain.cxx b/dev/ZKA/HALKit/ARM64/HalKernelMain.cxx
index eb1f6385..129170f7 100644
--- a/dev/ZKA/HALKit/ARM64/HalKernelMain.cxx
+++ b/dev/ZKA/HALKit/ARM64/HalKernelMain.cxx
@@ -19,13 +19,6 @@
#include <Modules/ACPI/ACPIFactoryInterface.hxx>
#include <NetworkKit/IPC.hxx>
-#define KERNEL_INIT(X) \
- X; \
- Kernel::ke_stop(RUNTIME_CHECK_BOOTSTRAP);
-
-/// @brief This symbol is the kernel main symbol.
-EXTERN_C void KeMain();
-
EXTERN_C Kernel::VoidPtr kInterruptVectorTable[];
struct PACKED HeapAllocInfo final
@@ -176,6 +169,4 @@ EXTERN_C void hal_init_platform(
kSyscalls[cShutdownInterrupt].Leak().Leak()->fHooked = true;
kSyscalls[cRebootInterrupt].Leak().Leak()->fHooked = true;
kSyscalls[cLPCSanitizeMsg].Leak().Leak()->fHooked = true;
-
- KERNEL_INIT(KeMain());
}