From 5e49f99502a7aa6462d846d5bddc0b48d23b374e Mon Sep 17 00:00:00 2001 From: Rodion Shingarev Date: Fri, 15 Mar 2019 00:13:04 +0200 Subject: [PATCH] corrected AddressSpaceId --- Library/OcAcpiLib/OcAcpiLib.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Library/OcAcpiLib/OcAcpiLib.c b/Library/OcAcpiLib/OcAcpiLib.c index b3e714a9..a66d1db8 100755 --- a/Library/OcAcpiLib/OcAcpiLib.c +++ b/Library/OcAcpiLib/OcAcpiLib.c @@ -1024,7 +1024,7 @@ AcpiFadtEnableReset ( // // Resetting through port 0xCF9 is universal on Intel and AMD. // - Context->Fadt->ResetReg.AddressSpaceId = EFI_ACPI_6_2_SYSTEM_MEMORY; + Context->Fadt->ResetReg.AddressSpaceId = EFI_ACPI_6_2_SYSTEM_IO; Context->Fadt->ResetReg.RegisterBitWidth = 8; Context->Fadt->ResetReg.RegisterBitOffset = 0; Context->Fadt->ResetReg.AccessSize = EFI_ACPI_6_2_BYTE;