diff options
author | Bob Moore <robert.moore@intel.com> | 2008-07-04 10:53:58 +0800 |
---|---|---|
committer | Len Brown <len.brown@intel.com> | 2008-10-22 23:14:38 -0400 |
commit | 0a1fbf2db0d275f0f8160bb9c3e51c4df5bafdc2 (patch) | |
tree | 030acc9af2f3e0ee2a7285f85ef7dc8f60b8174b /include/acpi | |
parent | c9bdd8057d706a972d804d2d8614a283641a5660 (diff) | |
download | kernel-crypto-0a1fbf2db0d275f0f8160bb9c3e51c4df5bafdc2.tar.gz kernel-crypto-0a1fbf2db0d275f0f8160bb9c3e51c4df5bafdc2.tar.xz kernel-crypto-0a1fbf2db0d275f0f8160bb9c3e51c4df5bafdc2.zip |
ACPICA: Return method arg count from acpi_get_object_info
Also update the debugger so that the correct number of arguments is
passed to the method. Prevents a warning message from the debugger.
Signed-off-by: Bob Moore <robert.moore@intel.com>
Signed-off-by: Lin Ming <ming.m.lin@intel.com>
Signed-off-by: Andi Kleen <ak@linux.intel.com>
Signed-off-by: Len Brown <len.brown@intel.com>
Diffstat (limited to 'include/acpi')
-rw-r--r-- | include/acpi/actypes.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/acpi/actypes.h b/include/acpi/actypes.h index 73d6b1cb07f..6bd08e83f31 100644 --- a/include/acpi/actypes.h +++ b/include/acpi/actypes.h @@ -859,6 +859,7 @@ struct acpi_obj_info_header { struct acpi_device_info { ACPI_COMMON_OBJ_INFO; + u32 param_count; /* If a method, required parameter count */ u32 valid; /* Indicates which fields below are valid */ u32 current_status; /* _STA value */ acpi_integer address; /* _ADR value if any */ |