diff options
author | Jan Engelhardt <jengelh@linux01.gwdg.de> | 2006-09-30 18:28:50 -0400 |
---|---|---|
committer | Len Brown <len.brown@intel.com> | 2006-10-14 01:51:07 -0400 |
commit | 50dd096973f1d95aa03c6a6d9e148d706b62b68e (patch) | |
tree | 1f047b9c574672c133559922af5d4aee2816b9ae /drivers/acpi/acpi_memhotplug.c | |
parent | b4bd8c66435a8cdf8c90334fb3b517a23ff2ab95 (diff) |
ACPI: Remove unnecessary from/to-void* and to-void casts in drivers/acpi
Signed-off-by: Jan Engelhardt <jengelh@gmx.de>
Signed-off-by: Len Brown <len.brown@intel.com>
Diffstat (limited to 'drivers/acpi/acpi_memhotplug.c')
-rw-r--r-- | drivers/acpi/acpi_memhotplug.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/acpi/acpi_memhotplug.c b/drivers/acpi/acpi_memhotplug.c index 98099de59b45..13687835c460 100644 --- a/drivers/acpi/acpi_memhotplug.c +++ b/drivers/acpi/acpi_memhotplug.c | |||
@@ -427,7 +427,7 @@ static int acpi_memory_device_remove(struct acpi_device *device, int type) | |||
427 | if (!device || !acpi_driver_data(device)) | 427 | if (!device || !acpi_driver_data(device)) |
428 | return -EINVAL; | 428 | return -EINVAL; |
429 | 429 | ||
430 | mem_device = (struct acpi_memory_device *)acpi_driver_data(device); | 430 | mem_device = acpi_driver_data(device); |
431 | kfree(mem_device); | 431 | kfree(mem_device); |
432 | 432 | ||
433 | return 0; | 433 | return 0; |