diff options
| author | Amlal El Mahrouss <amlal.elmahrouss@icloud.com> | 2024-08-27 19:37:29 +0200 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal.elmahrouss@icloud.com> | 2024-08-27 19:37:29 +0200 |
| commit | c9e0e4b6058f833f39c2193e217dc38f4edd8b82 (patch) | |
| tree | 7eadd57a88b51fc70ffd2668c7adc29386650e91 /dev/ZKA/Modules/ACPI | |
| parent | fdbcbba07cac3dbf9ef377f2f5248dd662f6babd (diff) | |
[WIP] Finishing SMP support, and then working on system driver and
loader.
Signed-off-by: Amlal El Mahrouss <amlal.elmahrouss@icloud.com>
Diffstat (limited to 'dev/ZKA/Modules/ACPI')
| -rw-r--r-- | dev/ZKA/Modules/ACPI/ACPI.hxx | 4 | ||||
| -rw-r--r-- | dev/ZKA/Modules/ACPI/ACPIFactoryInterface.hxx | 4 |
2 files changed, 4 insertions, 4 deletions
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. |
