From b3aba0ffe91908f7c1d3ffb93c662791699a38b5 Mon Sep 17 00:00:00 2001 From: aystarik Date: Wed, 29 Jun 2005 19:34:05 +0000 Subject: [PATCH] Purged all use of AE_AML_ERROR, added 2 new exception codes date 2002.05.06.17.38.00; author rmoore1; state Exp; --- source/include/acexcep.h | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/source/include/acexcep.h b/source/include/acexcep.h index fa8358878..03c22240f 100644 --- a/source/include/acexcep.h +++ b/source/include/acexcep.h @@ -1,7 +1,7 @@ /****************************************************************************** * * Name: acexcep.h - Exception codes returned by the ACPI subsystem - * $Revision: 1.61 $ + * $Revision: 1.62 $ * *****************************************************************************/ @@ -230,8 +230,10 @@ #define AE_AML_REGISTER_LIMIT (ACPI_STATUS) (0x001B | AE_CODE_AML) #define AE_AML_NO_WHILE (ACPI_STATUS) (0x001C | AE_CODE_AML) #define AE_AML_ALIGNMENT (ACPI_STATUS) (0x001D | AE_CODE_AML) +#define AE_AML_NO_RESOURCE_END_TAG (ACPI_STATUS) (0x001E | AE_CODE_AML) +#define AE_AML_BAD_RESOURCE_VALUE (ACPI_STATUS) (0x001F | AE_CODE_AML) -#define AE_CODE_AML_MAX 0x001D +#define AE_CODE_AML_MAX 0x001F /* * Internal exceptions used for control @@ -340,7 +342,9 @@ NATIVE_CHAR const *AcpiGbl_ExceptionNames_Aml[] = "AE_AML_INVALID_INDEX", "AE_AML_REGISTER_LIMIT", "AE_AML_NO_WHILE", - "AE_AML_ALIGNMENT" + "AE_AML_ALIGNMENT", + "AE_AML_NO_RESOURCE_END_TAG", + "AE_AML_BAD_RESOURCE_VALUE" }; NATIVE_CHAR const *AcpiGbl_ExceptionNames_Ctrl[] =