diff options
author | Yi Yang <yi.y.yang@intel.com> | 2008-08-04 10:30:09 +0800 |
---|---|---|
committer | Len Brown <len.brown@intel.com> | 2008-10-22 23:14:36 -0400 |
commit | b417d40b9a850f12f69aa9d785d2af39c9463bb8 (patch) | |
tree | 49ab4e4732922c593b416c3cf8deecdbb57c95c2 /include/acpi | |
parent | a6f30539f31a8129288b0e5640d3eb1174848c15 (diff) | |
download | op-kernel-dev-b417d40b9a850f12f69aa9d785d2af39c9463bb8.zip op-kernel-dev-b417d40b9a850f12f69aa9d785d2af39c9463bb8.tar.gz |
ACPICA: Return status from global init function
Return status from acpi_ut_init_globals. This is used by both
the kernel subsystem and the utilities such as iASL compiler.
The function could possibly fail when the caches are initialized.
Yang Yi.
Signed-off-by: Yi Yang <yi.y.yang@intel.com>
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/acutils.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/acpi/acutils.h b/include/acpi/acutils.h index 69f8888..10ce814 100644 --- a/include/acpi/acutils.h +++ b/include/acpi/acutils.h @@ -110,7 +110,7 @@ struct acpi_pkg_info { /* * utglobal - Global data structures and procedures */ -void acpi_ut_init_globals(void); +acpi_status acpi_ut_init_globals(void); #if defined(ACPI_DEBUG_OUTPUT) || defined(ACPI_DEBUGGER) |