diff options
Diffstat (limited to 'include/acpi/aclocal.h')
-rw-r--r-- | include/acpi/aclocal.h | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/include/acpi/aclocal.h b/include/acpi/aclocal.h index 06a9bd0a9ce9..98c697e3c486 100644 --- a/include/acpi/aclocal.h +++ b/include/acpi/aclocal.h | |||
@@ -207,10 +207,11 @@ struct acpi_namespace_node { | |||
207 | #define ANOBJ_METHOD_LOCAL 0x08 /* Node is a method local */ | 207 | #define ANOBJ_METHOD_LOCAL 0x08 /* Node is a method local */ |
208 | #define ANOBJ_SUBTREE_HAS_INI 0x10 /* Used to optimize device initialization */ | 208 | #define ANOBJ_SUBTREE_HAS_INI 0x10 /* Used to optimize device initialization */ |
209 | 209 | ||
210 | #define ANOBJ_METHOD_NO_RETVal 0x10 /* i_aSL only: Method has no return value */ | 210 | #define ANOBJ_IS_EXTERNAL 0x08 /* i_aSL only: This object created via External() */ |
211 | #define ANOBJ_METHOD_SOME_NO_RETVal 0x20 /* i_aSL only: Method has at least one return value */ | 211 | #define ANOBJ_METHOD_NO_RETVAL 0x10 /* i_aSL only: Method has no return value */ |
212 | #define ANOBJ_IS_BIT_OFFSet 0x40 /* i_aSL only: Reference is a bit offset */ | 212 | #define ANOBJ_METHOD_SOME_NO_RETVAL 0x20 /* i_aSL only: Method has at least one return value */ |
213 | #define ANOBJ_IS_REFERENCed 0x80 /* i_aSL only: Object was referenced */ | 213 | #define ANOBJ_IS_BIT_OFFSET 0x40 /* i_aSL only: Reference is a bit offset */ |
214 | #define ANOBJ_IS_REFERENCED 0x80 /* i_aSL only: Object was referenced */ | ||
214 | 215 | ||
215 | /* | 216 | /* |
216 | * ACPI Table Descriptor. One per ACPI table | 217 | * ACPI Table Descriptor. One per ACPI table |
@@ -595,6 +596,9 @@ union acpi_parse_value { | |||
595 | #define ACPI_DASM_UNICODE 0x03 | 596 | #define ACPI_DASM_UNICODE 0x03 |
596 | #define ACPI_DASM_EISAID 0x04 | 597 | #define ACPI_DASM_EISAID 0x04 |
597 | #define ACPI_DASM_MATCHOP 0x05 | 598 | #define ACPI_DASM_MATCHOP 0x05 |
599 | #define ACPI_DASM_LNOT_PREFIX 0x06 | ||
600 | #define ACPI_DASM_LNOT_SUFFIX 0x07 | ||
601 | #define ACPI_DASM_IGNORE 0x08 | ||
598 | 602 | ||
599 | /* | 603 | /* |
600 | * Generic operation (for example: If, While, Store) | 604 | * Generic operation (for example: If, While, Store) |
@@ -613,7 +617,7 @@ struct acpi_parse_obj_named { | |||
613 | u32 name; /* 4-byte name or zero if no name */ | 617 | u32 name; /* 4-byte name or zero if no name */ |
614 | }; | 618 | }; |
615 | 619 | ||
616 | /* this version is used by the i_aSL compiler only */ | 620 | /* This version is used by the i_aSL compiler only */ |
617 | 621 | ||
618 | #define ACPI_MAX_PARSEOP_NAME 20 | 622 | #define ACPI_MAX_PARSEOP_NAME 20 |
619 | 623 | ||