From c9e0e4b6058f833f39c2193e217dc38f4edd8b82 Mon Sep 17 00:00:00 2001 From: Amlal El Mahrouss Date: Tue, 27 Aug 2024 19:37:29 +0200 Subject: [WIP] Finishing SMP support, and then working on system driver and loader. Signed-off-by: Amlal El Mahrouss --- dev/ZKA/Modules/ACPI/ACPI.hxx | 4 ++-- dev/ZKA/Modules/ACPI/ACPIFactoryInterface.hxx | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) (limited to 'dev/ZKA/Modules/ACPI') diff --git a/dev/ZKA/Modules/ACPI/ACPI.hxx b/dev/ZKA/Modules/ACPI/ACPI.hxx index 44e9fa1b..c959d6c1 100644 --- a/dev/ZKA/Modules/ACPI/ACPI.hxx +++ b/dev/ZKA/Modules/ACPI/ACPI.hxx @@ -48,7 +48,7 @@ namespace Kernel UInt32 Reserved; }; - enum class ACPI_ADDRESS_SPACE_KIND : UInt8 + enum ACPI_ADDRESS_SPACE_KIND : UInt8 { eSystemMemory = 0, eSystemIO = 1, @@ -62,7 +62,7 @@ namespace Kernel class PACKED ACPI_ADDRESS final { public: - ACPI_ADDRESS_SPACE_KIND AddressSpaceId; + UInt8 AddressSpaceId; UInt8 RegisterBitWidth; UInt8 RegisterBitOffset; UInt8 Reserved; diff --git a/dev/ZKA/Modules/ACPI/ACPIFactoryInterface.hxx b/dev/ZKA/Modules/ACPI/ACPIFactoryInterface.hxx index a8f22c10..0d724f3b 100644 --- a/dev/ZKA/Modules/ACPI/ACPIFactoryInterface.hxx +++ b/dev/ZKA/Modules/ACPI/ACPIFactoryInterface.hxx @@ -29,8 +29,8 @@ namespace Kernel ACPIFactoryInterface(const ACPIFactoryInterface&) = default; public: - void Shutdown(); // shutdown - void Reboot(); // soft-reboot + Void Shutdown(); // shutdown + Void Reboot(); // soft-reboot public: /// @brief Descriptor find factory. -- cgit v1.2.3