aboutsummaryrefslogtreecommitdiff
path: root/drivers/platform/x86/sony-laptop.c
diff options
context:
space:
mode:
authorMattia Dongili <malattia@linux.it>2012-05-19 22:35:49 +0900
committerMatthew Garrett <mjg@redhat.com>2012-05-31 14:29:34 -0400
commitae188715ac3215f33ea6a8b829529225bf67deaa (patch)
tree75ca08a64458862d3e8be7d336daca1c72713edc /drivers/platform/x86/sony-laptop.c
parent5fe801a7427cb13c530af59e2b77b30d789d9b9a (diff)
sony-laptop: additional debug statements
Signed-off-by: Mattia Dongili <malattia@linux.it> Signed-off-by: Matthew Garrett <mjg@redhat.com>
Diffstat (limited to 'drivers/platform/x86/sony-laptop.c')
-rw-r--r--drivers/platform/x86/sony-laptop.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/drivers/platform/x86/sony-laptop.c b/drivers/platform/x86/sony-laptop.c
index 4420353cfb6..89e5cf9b191 100644
--- a/drivers/platform/x86/sony-laptop.c
+++ b/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 = &in;
status = acpi_evaluate_object(handle, method, &params, &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);