diff options
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. |
