diff options
| author | Jung-uk Kim <jkim@FreeBSD.org> | 2016-12-23 04:35:14 +0000 |
|---|---|---|
| committer | Jung-uk Kim <jkim@FreeBSD.org> | 2016-12-23 04:35:14 +0000 |
| commit | f2e6c39316f68b7ccc7abb766f82ed421c8e22b4 (patch) | |
| tree | 2c9acd96afc9afb47a31a88c97ac4907faee46d9 /source/include/aclocal.h | |
| parent | a56e3c255d5c5dfa4dd3a2fda4705a1607a6b7f3 (diff) | |
Import ACPICA 20161222.vendor/acpica/20161222
Notes
svn path=/vendor-sys/acpica/dist/; revision=310450
svn path=/vendor-sys/acpica/20161222/; revision=310451; tag=vendor/acpica/20161222
Diffstat (limited to 'source/include/aclocal.h')
| -rw-r--r-- | source/include/aclocal.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/source/include/aclocal.h b/source/include/aclocal.h index f41160953b17..734cae17a3b7 100644 --- a/source/include/aclocal.h +++ b/source/include/aclocal.h @@ -923,7 +923,7 @@ typedef union acpi_parse_value char AmlOpName[16]) /* Op name (debug only) */ -/* Flags for DisasmFlags field above */ +/* Internal opcodes for DisasmOpcode field above */ #define ACPI_DASM_BUFFER 0x00 /* Buffer is a simple data buffer */ #define ACPI_DASM_RESOURCE 0x01 /* Buffer is a Resource Descriptor */ @@ -936,7 +936,10 @@ typedef union acpi_parse_value #define ACPI_DASM_LNOT_PREFIX 0x08 /* Start of a LNotEqual (etc.) pair of opcodes */ #define ACPI_DASM_LNOT_SUFFIX 0x09 /* End of a LNotEqual (etc.) pair of opcodes */ #define ACPI_DASM_HID_STRING 0x0A /* String is a _HID or _CID */ -#define ACPI_DASM_IGNORE 0x0B /* Not used at this time */ +#define ACPI_DASM_IGNORE_SINGLE 0x0B /* Ignore the opcode but not it's children */ +#define ACPI_DASM_SWITCH_PREDICATE 0x0C /* Object is a predicate for a Switch or Case block */ +#define ACPI_DASM_CASE 0x0D /* If/Else is a Case in a Switch/Case block */ +#define ACPI_DASM_DEFAULT 0x0E /* Else is a Default in a Switch/Case block */ /* * Generic operation (for example: If, While, Store) |
