diff --git a/[refs] b/[refs] index fb5f8b0ad3d2..ddcabdeb6f52 100644 --- a/[refs] +++ b/[refs] @@ -1,2 +1,2 @@ --- -refs/heads/master: 5fe801a7427cb13c530af59e2b77b30d789d9b9a +refs/heads/master: ae188715ac3215f33ea6a8b829529225bf67deaa diff --git a/trunk/drivers/platform/x86/sony-laptop.c b/trunk/drivers/platform/x86/sony-laptop.c index 4420353cfb68..89e5cf9b1914 100644 --- a/trunk/drivers/platform/x86/sony-laptop.c +++ b/trunk/drivers/platform/x86/sony-laptop.c @@ -713,8 +713,13 @@ static union acpi_object *__call_snc_method(acpi_handle handle, char *method, params.count = 1; params.pointer = ∈ status = acpi_evaluate_object(handle, method, ¶ms, &output); - } else + dprintk("__call_snc_method: [%s:0x%.8x%.8x]\n", method, + (unsigned int)(*value >> 32), + (unsigned int)*value & 0xffffffff); + } else { status = acpi_evaluate_object(handle, method, NULL, &output); + dprintk("__call_snc_method: [%s]\n", method); + } if (ACPI_FAILURE(status)) { pr_err("Failed to evaluate [%s]\n", method);