OcAcpiLib: Fix reset value in FadtEnableReset quirk

closes acidanthera/bugtracker#897
This commit is contained in:
vit9696 2020-06-17 13:00:54 +03:00
parent 26be1a9be1
commit ddfe2b823a
2 changed files with 2 additions and 0 deletions

View File

@ -9,6 +9,7 @@ OpenCore Changelog
- Fixed audio stream position reporting on non-Intel platforms
- Added `Firmware` mode to `ResetSystem` to reboot into preferences
- Replaced `BlacklistAppleUpdate` with `run-efi-updater` NVRAM variable
- Fixed reset value in `FadtEnableReset` ACPI quirk
#### v0.5.9
- Added full HiDPI support in OpenCanopy

View File

@ -1159,6 +1159,7 @@ AcpiFadtEnableReset (
Fadt->ResetReg.RegisterBitOffset = 0;
Fadt->ResetReg.AccessSize = EFI_ACPI_6_2_BYTE;
Fadt->ResetReg.Address = 0xCF9;
Fadt->ResetValue = 6;
}
Fadt->Header.Checksum = 0;