x86: remove unneded casts

x86: remove unneeded casts

Signed-off-by: Jan Engelhardt <jengelh@computergmbh.de>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
This commit is contained in:
Jan Engelhardt
2008-01-30 13:33:23 +01:00
committed by Ingo Molnar
parent d729ab35ee
commit ade1af7712
14 changed files with 24 additions and 24 deletions

View File

@@ -694,7 +694,7 @@ static acpi_status longhaul_walk_callback(acpi_handle obj_handle,
if ( acpi_bus_get_device(obj_handle, &d) ) {
return 0;
}
*return_value = (void *)acpi_driver_data(d);
*return_value = acpi_driver_data(d);
return 1;
}