mirror of https://github.com/acidanthera/audk.git
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:
parent
d103840cfb
commit
916825b84f
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue