diff options
author | Len Brown <len.brown@intel.com> | 2009-12-15 22:27:39 -0500 |
---|---|---|
committer | Len Brown <len.brown@intel.com> | 2009-12-15 22:27:39 -0500 |
commit | 173cc11a6e10c38ff7d4949b48e8d2eb0aee3e05 (patch) | |
tree | 44ac9a6fe4e9c51b2c54918aa338df7eda96b0a5 /drivers/acpi/acpica/acobject.h | |
parent | 8bea8672edfca7ec5f661cafb218f1205863b343 (diff) | |
parent | 88e5071525ad6814be3a8a2792ce9e81a0cca22a (diff) |
Merge branch 'acpica' into release
Diffstat (limited to 'drivers/acpi/acpica/acobject.h')
-rw-r--r-- | drivers/acpi/acpica/acobject.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/drivers/acpi/acpica/acobject.h b/drivers/acpi/acpica/acobject.h index b39d682a2140..64062b1be3ee 100644 --- a/drivers/acpi/acpica/acobject.h +++ b/drivers/acpi/acpica/acobject.h | |||
@@ -180,7 +180,11 @@ struct acpi_object_method { | |||
180 | u8 sync_level; | 180 | u8 sync_level; |
181 | union acpi_operand_object *mutex; | 181 | union acpi_operand_object *mutex; |
182 | u8 *aml_start; | 182 | u8 *aml_start; |
183 | ACPI_INTERNAL_METHOD implementation; | 183 | union { |
184 | ACPI_INTERNAL_METHOD implementation; | ||
185 | union acpi_operand_object *handler; | ||
186 | } extra; | ||
187 | |||
184 | u32 aml_length; | 188 | u32 aml_length; |
185 | u8 thread_count; | 189 | u8 thread_count; |
186 | acpi_owner_id owner_id; | 190 | acpi_owner_id owner_id; |