diff options
author | jchen20 <jchen20@6f19259b-4bc3-4df7-8a09-765794883524> | 2009-04-17 02:06:51 +0000 |
---|---|---|
committer | jchen20 <jchen20@6f19259b-4bc3-4df7-8a09-765794883524> | 2009-04-17 02:06:51 +0000 |
commit | bd72aa1a3138c64f9d04ba8f4a93c27173eff7fb (patch) | |
tree | 044e812f539dc224ad025ff04cf3aff70079dd4e | |
parent | a45d1619696df1f19d0c0cd3c1e223a0b3b25939 (diff) | |
download | edk2-platforms-bd72aa1a3138c64f9d04ba8f4a93c27173eff7fb.tar.xz |
retire AcpiTableStorage.h and implement the gEfiAcpiTableStorageGuid with a fixed at build PCD
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@8108 6f19259b-4bc3-4df7-8a09-765794883524
-rwxr-xr-x | MdeModulePkg/Universal/Acpi/AcpiPlatformDxe/AcpiPlatform.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/MdeModulePkg/Universal/Acpi/AcpiPlatformDxe/AcpiPlatform.c b/MdeModulePkg/Universal/Acpi/AcpiPlatformDxe/AcpiPlatform.c index 6714da783a..951222a428 100755 --- a/MdeModulePkg/Universal/Acpi/AcpiPlatformDxe/AcpiPlatform.c +++ b/MdeModulePkg/Universal/Acpi/AcpiPlatformDxe/AcpiPlatform.c @@ -94,7 +94,7 @@ LocateFvInstanceWithTables ( //
Status = FvInstance->ReadFile (
FvInstance,
- FixedPcdGetPtr (PcdAcpiTableStorageFile),
+ (EFI_GUID*)FixedPcdGetPtr (PcdAcpiTableStorageFile),
NULL,
&Size,
&FileType,
@@ -208,7 +208,7 @@ AcpiPlatformEntryPoint ( Status = FwVol->ReadSection (
FwVol,
- FixedPcdGetPtr (PcdAcpiTableStorageFile),
+ (EFI_GUID*)FixedPcdGetPtr (PcdAcpiTableStorageFile),
EFI_SECTION_RAW,
Instance,
(VOID**) &CurrentTable,
|