Skip to content
This repository has been archived by the owner on Feb 4, 2025. It is now read-only.

Commit

Permalink
WhitleyOpenBoardPkg/AcpiPlatform: Fix table install logic
Browse files Browse the repository at this point in the history
Fix ACPI table install logic issue introduced by incorrect fix
in 4c9b69e that prevents
some tables from being installed.

Cc: Nate DeSimone <[email protected]>
Cc: Chasel Chiu <[email protected]>
Signed-off-by: Isaac Oram <[email protected]>
Reviewed-by: Nate DeSimone <[email protected]>
  • Loading branch information
iworam committed Oct 12, 2022
1 parent 66cef08 commit ee8d078
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -475,7 +475,7 @@ AcpiPlatformEarlyAcpiTablesInstall (
// Install the table
//
AcpiStatus = AcpiTable->InstallAcpiTable (AcpiTable, CurrentTable, CurrentTable->Length, &TableHandle);
if (!EFI_ERROR (AcpiStatus)) {
if (EFI_ERROR (AcpiStatus)) {
ASSERT_EFI_ERROR (AcpiStatus);
return AcpiStatus;
}
Expand Down

0 comments on commit ee8d078

Please sign in to comment.