diff options
| author | 2008-10-28 16:46:59 +0100 | |
|---|---|---|
| committer | 2008-10-28 16:46:59 +0100 | |
| commit | 2011a067281565494494aee194ca5081e52d6c3f (patch) | |
| tree | e0b21ad43e6eeb0c67945026be71d1278c93c695 /drivers/acpi/utils.c | |
| parent | x86: change OPTIMIZE_INLINING help to say enabling makes smaller kernels (diff) | |
| parent | Linux 2.6.28-rc2 (diff) | |
| download | linux-dev-2011a067281565494494aee194ca5081e52d6c3f.tar.xz linux-dev-2011a067281565494494aee194ca5081e52d6c3f.zip | |
Merge commit 'v2.6.28-rc2' into x86/doc
Diffstat (limited to 'drivers/acpi/utils.c')
| -rw-r--r-- | drivers/acpi/utils.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/acpi/utils.c b/drivers/acpi/utils.c index 100926143818..e827be36ee8d 100644 --- a/drivers/acpi/utils.c +++ b/drivers/acpi/utils.c @@ -256,7 +256,7 @@ EXPORT_SYMBOL(acpi_extract_package); acpi_status acpi_evaluate_integer(acpi_handle handle, acpi_string pathname, - struct acpi_object_list *arguments, unsigned long *data) + struct acpi_object_list *arguments, unsigned long long *data) { acpi_status status = AE_OK; union acpi_object *element; @@ -288,7 +288,7 @@ acpi_evaluate_integer(acpi_handle handle, *data = element->integer.value; kfree(element); - ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Return value [%lu]\n", *data)); + ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Return value [%llu]\n", *data)); return AE_OK; } |
