diff options
Diffstat (limited to 'drivers/acpi/acpica/exfldio.c')
| -rw-r--r-- | drivers/acpi/acpica/exfldio.c | 10 | 
1 files changed, 4 insertions, 6 deletions
| diff --git a/drivers/acpi/acpica/exfldio.c b/drivers/acpi/acpica/exfldio.c index 49479927e7f7..725a3746a2df 100644 --- a/drivers/acpi/acpica/exfldio.c +++ b/drivers/acpi/acpica/exfldio.c @@ -263,17 +263,15 @@ acpi_ex_access_region(union acpi_operand_object *obj_desc,  	}  	ACPI_DEBUG_PRINT_RAW((ACPI_DB_BFIELD, -			      " Region [%s:%X], Width %X, ByteBase %X, Offset %X at %p\n", +			      " Region [%s:%X], Width %X, ByteBase %X, Offset %X at %8.8X%8.8X\n",  			      acpi_ut_get_region_name(rgn_desc->region.  						      space_id),  			      rgn_desc->region.space_id,  			      obj_desc->common_field.access_byte_width,  			      obj_desc->common_field.base_byte_offset, -			      field_datum_byte_offset, ACPI_CAST_PTR(void, -								     (rgn_desc-> -								      region. -								      address + -								      region_offset)))); +			      field_datum_byte_offset, +			      ACPI_FORMAT_UINT64(rgn_desc->region.address + +						 region_offset)));  	/* Invoke the appropriate address_space/op_region handler */ |