diff options
Diffstat (limited to 'drivers')
| -rw-r--r-- | drivers/acpi/acpica/dbdisply.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/acpi/acpica/dbdisply.c b/drivers/acpi/acpica/dbdisply.c index f10c158424f3..502bb587f112 100644 --- a/drivers/acpi/acpica/dbdisply.c +++ b/drivers/acpi/acpica/dbdisply.c | |||
| @@ -599,12 +599,14 @@ void acpi_db_display_calling_tree(void) | |||
| 599 | 599 | ||
| 600 | void acpi_db_display_object_type(char *object_arg) | 600 | void acpi_db_display_object_type(char *object_arg) |
| 601 | { | 601 | { |
| 602 | acpi_size arg; | ||
| 602 | acpi_handle handle; | 603 | acpi_handle handle; |
| 603 | struct acpi_device_info *info; | 604 | struct acpi_device_info *info; |
| 604 | acpi_status status; | 605 | acpi_status status; |
| 605 | u32 i; | 606 | u32 i; |
| 606 | 607 | ||
| 607 | handle = ACPI_TO_POINTER(strtoul(object_arg, NULL, 16)); | 608 | arg = strtoul(object_arg, NULL, 16); |
| 609 | handle = ACPI_TO_POINTER(arg); | ||
| 608 | 610 | ||
| 609 | status = acpi_get_object_info(handle, &info); | 611 | status = acpi_get_object_info(handle, &info); |
| 610 | if (ACPI_FAILURE(status)) { | 612 | if (ACPI_FAILURE(status)) { |
