|
@@ -108,11 +108,11 @@ acpi_ex_generate_access(u32 field_bit_offset,
|
|
field_byte_length = field_byte_end_offset - field_byte_offset;
|
|
field_byte_length = field_byte_end_offset - field_byte_offset;
|
|
|
|
|
|
ACPI_DEBUG_PRINT((ACPI_DB_BFIELD,
|
|
ACPI_DEBUG_PRINT((ACPI_DB_BFIELD,
|
|
- "Bit length %d, Bit offset %d\n",
|
|
|
|
|
|
+ "Bit length %u, Bit offset %u\n",
|
|
field_bit_length, field_bit_offset));
|
|
field_bit_length, field_bit_offset));
|
|
|
|
|
|
ACPI_DEBUG_PRINT((ACPI_DB_BFIELD,
|
|
ACPI_DEBUG_PRINT((ACPI_DB_BFIELD,
|
|
- "Byte Length %d, Byte Offset %d, End Offset %d\n",
|
|
|
|
|
|
+ "Byte Length %u, Byte Offset %u, End Offset %u\n",
|
|
field_byte_length, field_byte_offset,
|
|
field_byte_length, field_byte_offset,
|
|
field_byte_end_offset));
|
|
field_byte_end_offset));
|
|
|
|
|
|
@@ -147,11 +147,11 @@ acpi_ex_generate_access(u32 field_bit_offset,
|
|
accesses = field_end_offset - field_start_offset;
|
|
accesses = field_end_offset - field_start_offset;
|
|
|
|
|
|
ACPI_DEBUG_PRINT((ACPI_DB_BFIELD,
|
|
ACPI_DEBUG_PRINT((ACPI_DB_BFIELD,
|
|
- "AccessWidth %d end is within region\n",
|
|
|
|
|
|
+ "AccessWidth %u end is within region\n",
|
|
access_byte_width));
|
|
access_byte_width));
|
|
|
|
|
|
ACPI_DEBUG_PRINT((ACPI_DB_BFIELD,
|
|
ACPI_DEBUG_PRINT((ACPI_DB_BFIELD,
|
|
- "Field Start %d, Field End %d -- requires %d accesses\n",
|
|
|
|
|
|
+ "Field Start %u, Field End %u -- requires %u accesses\n",
|
|
field_start_offset, field_end_offset,
|
|
field_start_offset, field_end_offset,
|
|
accesses));
|
|
accesses));
|
|
|
|
|
|
@@ -159,7 +159,7 @@ acpi_ex_generate_access(u32 field_bit_offset,
|
|
|
|
|
|
if (accesses <= 1) {
|
|
if (accesses <= 1) {
|
|
ACPI_DEBUG_PRINT((ACPI_DB_BFIELD,
|
|
ACPI_DEBUG_PRINT((ACPI_DB_BFIELD,
|
|
- "Entire field can be accessed with one operation of size %d\n",
|
|
|
|
|
|
+ "Entire field can be accessed with one operation of size %u\n",
|
|
access_byte_width));
|
|
access_byte_width));
|
|
return_VALUE(access_byte_width);
|
|
return_VALUE(access_byte_width);
|
|
}
|
|
}
|
|
@@ -174,7 +174,7 @@ acpi_ex_generate_access(u32 field_bit_offset,
|
|
}
|
|
}
|
|
} else {
|
|
} else {
|
|
ACPI_DEBUG_PRINT((ACPI_DB_BFIELD,
|
|
ACPI_DEBUG_PRINT((ACPI_DB_BFIELD,
|
|
- "AccessWidth %d end is NOT within region\n",
|
|
|
|
|
|
+ "AccessWidth %u end is NOT within region\n",
|
|
access_byte_width));
|
|
access_byte_width));
|
|
if (access_byte_width == 1) {
|
|
if (access_byte_width == 1) {
|
|
ACPI_DEBUG_PRINT((ACPI_DB_BFIELD,
|
|
ACPI_DEBUG_PRINT((ACPI_DB_BFIELD,
|
|
@@ -190,7 +190,7 @@ acpi_ex_generate_access(u32 field_bit_offset,
|
|
* previous access
|
|
* previous access
|
|
*/
|
|
*/
|
|
ACPI_DEBUG_PRINT((ACPI_DB_BFIELD,
|
|
ACPI_DEBUG_PRINT((ACPI_DB_BFIELD,
|
|
- "Backing off to previous optimal access width of %d\n",
|
|
|
|
|
|
+ "Backing off to previous optimal access width of %u\n",
|
|
minimum_access_width));
|
|
minimum_access_width));
|
|
return_VALUE(minimum_access_width);
|
|
return_VALUE(minimum_access_width);
|
|
}
|
|
}
|