summaryrefslogtreecommitdiff
path: root/source/include/acexcep.h
diff options
context:
space:
mode:
Diffstat (limited to 'source/include/acexcep.h')
-rw-r--r--source/include/acexcep.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/source/include/acexcep.h b/source/include/acexcep.h
index c5217295d..4ab007d1b 100644
--- a/source/include/acexcep.h
+++ b/source/include/acexcep.h
@@ -201,8 +201,9 @@ typedef struct acpi_exception_info
#define AE_NOT_CONFIGURED EXCEP_ENV (0x001C)
#define AE_ACCESS EXCEP_ENV (0x001D)
#define AE_IO_ERROR EXCEP_ENV (0x001E)
+#define AE_CONVERSION_OVERFLOW EXCEP_ENV (0x001F)
-#define AE_CODE_ENV_MAX 0x001E
+#define AE_CODE_ENV_MAX 0x001F
/*
@@ -336,7 +337,8 @@ static const ACPI_EXCEPTION_INFO AcpiGbl_ExceptionNames_Env[] =
EXCEP_TXT ("AE_OWNER_ID_LIMIT", "There are no more Owner IDs available for ACPI tables or control methods"),
EXCEP_TXT ("AE_NOT_CONFIGURED", "The interface is not part of the current subsystem configuration"),
EXCEP_TXT ("AE_ACCESS", "Permission denied for the requested operation"),
- EXCEP_TXT ("AE_IO_ERROR", "An I/O error occurred")
+ EXCEP_TXT ("AE_IO_ERROR", "An I/O error occurred"),
+ EXCEP_TXT ("AE_CONVERSION_OVERFLOW", "Overflow during string-to-integer conversion")
};
static const ACPI_EXCEPTION_INFO AcpiGbl_ExceptionNames_Pgm[] =