diff options
author | Elyes Haouas <ehaouas@noos.fr> | 2023-02-07 13:03:09 +0100 |
---|---|---|
committer | Elyes Haouas <ehaouas@noos.fr> | 2023-02-08 02:51:47 +0000 |
commit | b2d5e466d52be589f1ba391cca1f9950a3a52966 (patch) | |
tree | ef4f5072ca537f4acc16cd6df0b0f7f91f7570db /src/include | |
parent | 5e7dc21c910ac0960e203044d1c513d50d27094b (diff) |
acpi/acpigen.h: Fix EVENT_OP value
Fix EVENT_OP value according to ACPI specs:
https://uefi.org/specs/ACPI/6.5/20_AML_Specification.html?highlight=aml%20byte%20stream%20byte%20values#aml-byte-stream-byte-values
Change-Id: I8c531e95f4fc741926bc883d869816f534ff3b7f
Signed-off-by: Elyes Haouas <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/72805
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Reviewed-by: Felix Held <felix-coreboot@felixheld.de>
Reviewed-by: Felix Singer <felixsinger@posteo.net>
Diffstat (limited to 'src/include')
-rw-r--r-- | src/include/acpi/acpigen.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/acpi/acpigen.h b/src/include/acpi/acpigen.h index c506021d32..dff5a1f82f 100644 --- a/src/include/acpi/acpigen.h +++ b/src/include/acpi/acpigen.h @@ -46,7 +46,7 @@ enum { MULTI_NAME_PREFIX = 0x2F, EXT_OP_PREFIX = 0x5B, MUTEX_OP = 0x01, - EVENT_OP = 0x01, + EVENT_OP = 0x02, SF_RIGHT_OP = 0x10, SF_LEFT_OP = 0x11, COND_REFOF_OP = 0x12, |