diff options
author | Elyes HAOUAS <ehaouas@noos.fr> | 2019-11-06 19:42:48 +0100 |
---|---|---|
committer | Nico Huber <nico.h@gmx.de> | 2019-11-22 09:09:11 +0000 |
commit | 490eab46a87fd7aab353f6492e22550d039e5448 (patch) | |
tree | 1d1c9b50aa9106f652293c94ee0b75e9894499ff /src/arch/x86/include | |
parent | f5c0d612966d1ab3e8c2f1d1ae1de9ae2438bbab (diff) |
arch/acpigen.h: Correct PARENT_PREFIX encoding value
The encoding value for PARENT_PREFIX is 0x5e.
(ACPI specification version 6.3 page 1073)
Change-Id: Ibbacb8b445157b377772f09572f87f8300a278dd
Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/36652
Reviewed-by: Nico Huber <nico.h@gmx.de>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/arch/x86/include')
-rw-r--r-- | src/arch/x86/include/arch/acpigen.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/arch/x86/include/arch/acpigen.h b/src/arch/x86/include/arch/acpigen.h index 0f11226eb0..6fd9f73e05 100644 --- a/src/arch/x86/include/arch/acpigen.h +++ b/src/arch/x86/include/arch/acpigen.h @@ -87,7 +87,7 @@ enum { BANK_FIELD_OP = 0x87, DATA_REGION_OP = 0x88, ROOT_PREFIX = 0x5C, - PARENT_PREFIX = 0x5D, + PARENT_PREFIX = 0x5E, LOCAL0_OP = 0x60, LOCAL1_OP = 0x61, LOCAL2_OP = 0x62, |