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/acexcep.h | |
parent | a56e3c255d5c5dfa4dd3a2fda4705a1607a6b7f3 (diff) | |
download | src-test2-f2e6c39316f68b7ccc7abb766f82ed421c8e22b4.tar.gz src-test2-f2e6c39316f68b7ccc7abb766f82ed421c8e22b4.zip |
Notes
Diffstat (limited to 'source/include/acexcep.h')
-rw-r--r-- | source/include/acexcep.h | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/source/include/acexcep.h b/source/include/acexcep.h index 0f9a6aa5691b..2fe81dccce33 100644 --- a/source/include/acexcep.h +++ b/source/include/acexcep.h @@ -217,11 +217,10 @@ typedef struct acpi_exception_info #define AE_CTRL_TRANSFER EXCEP_CTL (0x0008) #define AE_CTRL_BREAK EXCEP_CTL (0x0009) #define AE_CTRL_CONTINUE EXCEP_CTL (0x000A) -#define AE_CTRL_SKIP EXCEP_CTL (0x000B) -#define AE_CTRL_PARSE_CONTINUE EXCEP_CTL (0x000C) -#define AE_CTRL_PARSE_PENDING EXCEP_CTL (0x000D) +#define AE_CTRL_PARSE_CONTINUE EXCEP_CTL (0x000B) +#define AE_CTRL_PARSE_PENDING EXCEP_CTL (0x000C) -#define AE_CODE_CTRL_MAX 0x000D +#define AE_CODE_CTRL_MAX 0x000C /* Exception strings for AcpiFormatException */ @@ -344,7 +343,6 @@ static const ACPI_EXCEPTION_INFO AcpiGbl_ExceptionNames_Ctrl[] = EXCEP_TXT ("AE_CTRL_TRANSFER", "Transfer control to called method"), EXCEP_TXT ("AE_CTRL_BREAK", "A Break has been executed"), EXCEP_TXT ("AE_CTRL_CONTINUE", "A Continue has been executed"), - EXCEP_TXT ("AE_CTRL_SKIP", "Not currently used"), EXCEP_TXT ("AE_CTRL_PARSE_CONTINUE", "Used to skip over bad opcodes"), EXCEP_TXT ("AE_CTRL_PARSE_PENDING", "Used to implement AML While loops") }; |