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>
This commit is contained in:
Elyes Haouas 2023-02-07 13:03:09 +01:00
parent 5e7dc21c91
commit b2d5e466d5
1 changed files with 1 additions and 1 deletions

View File

@ -46,7 +46,7 @@ enum {
MULTI_NAME_PREFIX = 0x2F, MULTI_NAME_PREFIX = 0x2F,
EXT_OP_PREFIX = 0x5B, EXT_OP_PREFIX = 0x5B,
MUTEX_OP = 0x01, MUTEX_OP = 0x01,
EVENT_OP = 0x01, EVENT_OP = 0x02,
SF_RIGHT_OP = 0x10, SF_RIGHT_OP = 0x10,
SF_LEFT_OP = 0x11, SF_LEFT_OP = 0x11,
COND_REFOF_OP = 0x12, COND_REFOF_OP = 0x12,