mirror of
https://github.com/acpica/acpica/
synced 2025-02-25 18:04:08 +03:00
Rename AE_AML_INFINITE_LOOP exception
More appropriately renamed to AE_AML_LOOP_TIMEOUT, now that a real timer is used for the implementation.
This commit is contained in:
parent
015c87ca38
commit
e017213698
@ -336,7 +336,7 @@ AcpiDsExecEndControlOp (
|
||||
if (ACPI_TIME_AFTER (AcpiOsGetTimer (),
|
||||
ControlState->Control.LoopTimeout))
|
||||
{
|
||||
Status = AE_AML_INFINITE_LOOP;
|
||||
Status = AE_AML_LOOP_TIMEOUT;
|
||||
break;
|
||||
}
|
||||
|
||||
|
@ -309,7 +309,7 @@ typedef struct acpi_exception_info
|
||||
#define AE_AML_CIRCULAR_REFERENCE EXCEP_AML (0x001E)
|
||||
#define AE_AML_BAD_RESOURCE_LENGTH EXCEP_AML (0x001F)
|
||||
#define AE_AML_ILLEGAL_ADDRESS EXCEP_AML (0x0020)
|
||||
#define AE_AML_INFINITE_LOOP EXCEP_AML (0x0021)
|
||||
#define AE_AML_LOOP_TIMEOUT EXCEP_AML (0x0021)
|
||||
#define AE_AML_UNINITIALIZED_NODE EXCEP_AML (0x0022)
|
||||
#define AE_AML_TARGET_TYPE EXCEP_AML (0x0023)
|
||||
|
||||
@ -441,7 +441,7 @@ static const ACPI_EXCEPTION_INFO AcpiGbl_ExceptionNames_Aml[] =
|
||||
EXCEP_TXT ("AE_AML_CIRCULAR_REFERENCE", "Two references refer to each other"),
|
||||
EXCEP_TXT ("AE_AML_BAD_RESOURCE_LENGTH", "The length of a Resource Descriptor in the AML is incorrect"),
|
||||
EXCEP_TXT ("AE_AML_ILLEGAL_ADDRESS", "A memory, I/O, or PCI configuration address is invalid"),
|
||||
EXCEP_TXT ("AE_AML_INFINITE_LOOP", "An apparent infinite AML While loop, method was aborted"),
|
||||
EXCEP_TXT ("AE_AML_LOOP_TIMEOUT", "An AML While loop exceeded the maximum execution time"),
|
||||
EXCEP_TXT ("AE_AML_UNINITIALIZED_NODE", "A namespace node is uninitialized or unresolved"),
|
||||
EXCEP_TXT ("AE_AML_TARGET_TYPE", "A target operand of an incorrect type was encountered")
|
||||
};
|
||||
|
Loading…
x
Reference in New Issue
Block a user