diff options
| author | Jan Engelhardt <[email protected]> | 2006-09-30 22:28:50 +0000 |
|---|---|---|
| committer | Len Brown <[email protected]> | 2006-10-14 05:51:07 +0000 |
| commit | 50dd096973f1d95aa03c6a6d9e148d706b62b68e (patch) | |
| tree | 1f047b9c574672c133559922af5d4aee2816b9ae /drivers/acpi/tables.c | |
| parent | Linux 2.6.19-rc2 (diff) | |
| download | kernel-50dd096973f1d95aa03c6a6d9e148d706b62b68e.tar.gz kernel-50dd096973f1d95aa03c6a6d9e148d706b62b68e.zip | |
ACPI: Remove unnecessary from/to-void* and to-void casts in drivers/acpi
Signed-off-by: Jan Engelhardt <[email protected]>
Signed-off-by: Len Brown <[email protected]>
Diffstat (limited to 'drivers/acpi/tables.c')
| -rw-r--r-- | drivers/acpi/tables.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/acpi/tables.c b/drivers/acpi/tables.c index bfb3bfcf9e91..ffa30c9fccbf 100644 --- a/drivers/acpi/tables.c +++ b/drivers/acpi/tables.c @@ -228,7 +228,7 @@ void acpi_table_print_madt_entry(acpi_table_entry_header * header) static int acpi_table_compute_checksum(void *table_pointer, unsigned long length) { - u8 *p = (u8 *) table_pointer; + u8 *p = table_pointer; unsigned long remains = length; unsigned long sum = 0; |
