X-Git-Url: http://drtracing.org/?a=blobdiff_plain;f=drivers%2Facpi%2Facpica%2Fexconvrt.c;h=588ad1409dbe67cc629d6ac5c55715bae1a2cdc6;hb=7e75c99e6e2aac23b3e563b8c9e93d3e13afad1e;hp=b7e9b3d803e169aedf7e9d3fd15b544832ce08ff;hpb=39fada55274241d50e27eb961cc9280b5b6121fb;p=deliverable%2Flinux.git diff --git a/drivers/acpi/acpica/exconvrt.c b/drivers/acpi/acpica/exconvrt.c index b7e9b3d803e1..588ad1409dbe 100644 --- a/drivers/acpi/acpica/exconvrt.c +++ b/drivers/acpi/acpica/exconvrt.c @@ -124,9 +124,9 @@ acpi_ex_convert_to_integer(union acpi_operand_object *obj_desc, * of ACPI 3.0) is that the to_integer() operator allows both decimal * and hexadecimal strings (hex prefixed with "0x"). */ - status = acpi_ut_strtoul64((char *)pointer, flags, - acpi_gbl_integer_byte_width, - &result); + status = acpi_ut_strtoul64(ACPI_CAST_PTR(char, pointer), + (acpi_gbl_integer_byte_width | + flags), &result); if (ACPI_FAILURE(status)) { return_ACPI_STATUS(status); } @@ -632,7 +632,7 @@ acpi_ex_convert_to_target_type(acpi_object_type destination_type, */ status = acpi_ex_convert_to_integer(source_desc, result_desc, - 16); + ACPI_STRTOUL_BASE16); break; case ACPI_TYPE_STRING: