DynamicTablesPkg: SSDT _LPI revision is incorrect

_LPI Revision should be 0 per the ACPI 6.5 specification.
"The revision number of the _LPI object. Current revision is 0."

Signed-off-by: Jeff Brasen <jbrasen@nvidia.com>
Reviewed-by: Pierre Gondois <pierre.gondois@arm.com>
Reviewed-by: Sami Mujawar <sami.mujawar@arm.com>
This commit is contained in:
Jeff Brasen 2022-11-15 11:01:06 -07:00 committed by mergify[bot]
parent d103840cfb
commit 916825b84f
1 changed files with 1 additions and 1 deletions

View File

@ -482,7 +482,7 @@ GenerateLpiStates (
}
// We do not support the LevelId field for now, let it to 0.
Status = AmlCreateLpiNode (AslName, 1, 0, ScopeNode, &LpiNode);
Status = AmlCreateLpiNode (AslName, 0, 0, ScopeNode, &LpiNode);
if (EFI_ERROR (Status)) {
ASSERT (0);
return Status;