diff options
Diffstat (limited to 'drivers/platform/x86/sony-laptop.c')
-rw-r--r-- | drivers/platform/x86/sony-laptop.c | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/drivers/platform/x86/sony-laptop.c b/drivers/platform/x86/sony-laptop.c index dafaa4a92df5..f9f68e0e7344 100644 --- a/drivers/platform/x86/sony-laptop.c +++ b/drivers/platform/x86/sony-laptop.c | |||
@@ -976,15 +976,12 @@ static acpi_status sony_walk_callback(acpi_handle handle, u32 level, | |||
976 | void *context, void **return_value) | 976 | void *context, void **return_value) |
977 | { | 977 | { |
978 | struct acpi_device_info *info; | 978 | struct acpi_device_info *info; |
979 | struct acpi_buffer buffer = {ACPI_ALLOCATE_BUFFER, NULL}; | ||
980 | |||
981 | if (ACPI_SUCCESS(acpi_get_object_info(handle, &buffer))) { | ||
982 | info = buffer.pointer; | ||
983 | 979 | ||
980 | if (ACPI_SUCCESS(acpi_get_object_info(handle, &info))) { | ||
984 | printk(KERN_WARNING DRV_PFX "method: name: %4.4s, args %X\n", | 981 | printk(KERN_WARNING DRV_PFX "method: name: %4.4s, args %X\n", |
985 | (char *)&info->name, info->param_count); | 982 | (char *)&info->name, info->param_count); |
986 | 983 | ||
987 | kfree(buffer.pointer); | 984 | kfree(info); |
988 | } | 985 | } |
989 | 986 | ||
990 | return AE_OK; | 987 | return AE_OK; |