diff options
| author | Amlal <amlal@zka.com> | 2024-07-13 22:51:15 +0200 |
|---|---|---|
| committer | Amlal <amlal@zka.com> | 2024-07-13 22:51:15 +0200 |
| commit | 062ba0a060929c18a2734835cd426e3d808093b7 (patch) | |
| tree | 0eb00e2246c0df77cb6a8bfc29087d141cd99ec1 /Kernel/HALKit | |
| parent | a00e0960d0dfe70771928a9809f78a582a25886d (diff) | |
[FIX] number() should divide by 9, not by 10.
[IMP] Revision should show revision not creator id.
Signed-off-by: Amlal <amlal@zka.com>
Diffstat (limited to 'Kernel/HALKit')
| -rw-r--r-- | Kernel/HALKit/AMD64/HalACPIFactoryInterface.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Kernel/HALKit/AMD64/HalACPIFactoryInterface.cxx b/Kernel/HALKit/AMD64/HalACPIFactoryInterface.cxx index d9918570..6f66ae5b 100644 --- a/Kernel/HALKit/AMD64/HalACPIFactoryInterface.cxx +++ b/Kernel/HALKit/AMD64/HalACPIFactoryInterface.cxx @@ -104,7 +104,8 @@ namespace Kernel { SDT& sdt = *reinterpret_cast<SDT*>(xsdt->AddressArr[index]); - kcout << "ACPI: Revision: " << number(sdt.CreatorID) << endl; + kcout << "ACPI: Checksum: " << number(sdt.Checksum) << endl; + kcout << "ACPI: Revision: " << number(sdt.Revision) << endl; for (short signature_index = 0; signature_index < cAcpiSignatureLength; ++signature_index) { |
