mirror of https://github.com/acidanthera/audk.git
fixed 2 k8 issues.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@8204 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
21946ba86b
commit
6198c34621
|
@ -1,7 +1,7 @@
|
|||
/** @file
|
||||
ACPI Table Protocol Implementation
|
||||
|
||||
Copyright (c) 2006, 2008, 2009, Intel Corporation<BR>
|
||||
Copyright (c) 2006 - 2009, Intel Corporation<BR>
|
||||
All rights reserved. This program and the accompanying materials
|
||||
are licensed and made available under the terms and conditions of the BSD License
|
||||
which accompanies this distribution. The full text of the license may be found at
|
||||
|
@ -613,7 +613,7 @@ AddTableToList (
|
|||
&Buffer64,
|
||||
sizeof (UINT64)
|
||||
);
|
||||
}
|
||||
|
||||
//
|
||||
// RSDP OEM information is updated to match the FADT OEM information
|
||||
//
|
||||
|
@ -653,6 +653,7 @@ AddTableToList (
|
|||
);
|
||||
AcpiTableInstance->Xsdt->OemRevision = AcpiTableInstance->Fadt3->Header.OemRevision;
|
||||
}
|
||||
}
|
||||
//
|
||||
// Checksum the table
|
||||
//
|
||||
|
@ -1142,6 +1143,10 @@ DeleteTable (
|
|||
// Init locals
|
||||
//
|
||||
RemoveFromRsdt = TRUE;
|
||||
//
|
||||
// Check for Table->Table
|
||||
//
|
||||
ASSERT (Table->Table != NULL);
|
||||
CurrentTableSignature = ((EFI_ACPI_COMMON_HEADER *) Table->Table)->Signature;
|
||||
|
||||
//
|
||||
|
|
Loading…
Reference in New Issue