diff options
| author | Len Brown <len.brown@intel.com> | 2004-06-22 05:48:26 -0400 |
|---|---|---|
| committer | Len Brown <lenb@dhcppc3.> | 2004-06-22 05:48:26 -0400 |
| commit | 24ee10968f574b0dfbb61ffbc2e6521d2cd21ada (patch) | |
| tree | 418fb19f9bdb30b82ee0b0288e1b18826167d656 /include | |
| parent | 2d837fe9faa92591ed38090a62e168de37e8b763 (diff) | |
[ACPI] ACPICA 20040615 from Bob Moore
Implemented support for Buffer and String objects (as
per ACPI 2.0) for the following ASL operators: LEqual,
LGreater, LLess, LGreaterEqual, and LLessEqual.
Diffstat (limited to 'include')
| -rw-r--r-- | include/acpi/acconfig.h | 2 | ||||
| -rw-r--r-- | include/acpi/acdebug.h | 4 | ||||
| -rw-r--r-- | include/acpi/acinterp.h | 4 |
3 files changed, 7 insertions, 3 deletions
diff --git a/include/acpi/acconfig.h b/include/acpi/acconfig.h index ebe514f66e87..4fc249b1e9a3 100644 --- a/include/acpi/acconfig.h +++ b/include/acpi/acconfig.h @@ -64,7 +64,7 @@ /* Version string */ -#define ACPI_CA_VERSION 0x20040527 +#define ACPI_CA_VERSION 0x20040615 /* * OS name, used for the _OS object. The _OS object is essentially obsolete, diff --git a/include/acpi/acdebug.h b/include/acpi/acdebug.h index 6beb5bbf4bfc..658c5f505872 100644 --- a/include/acpi/acdebug.h +++ b/include/acpi/acdebug.h @@ -106,6 +106,10 @@ acpi_db_method_end ( * dbcmds - debug commands and output routines */ +acpi_status +acpi_db_disassemble_method ( + char *name); + void acpi_db_display_table_info ( char *table_arg); diff --git a/include/acpi/acinterp.h b/include/acpi/acinterp.h index 6848e9911828..a43e91fb972c 100644 --- a/include/acpi/acinterp.h +++ b/include/acpi/acinterp.h @@ -246,8 +246,8 @@ acpi_ex_do_concatenate ( u8 acpi_ex_do_logical_op ( u16 opcode, - acpi_integer operand0, - acpi_integer operand1); + union acpi_operand_object *obj_desc, + union acpi_operand_object *obj_desc2); acpi_integer acpi_ex_do_math_op ( |
