Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 46426
b: refs/heads/master
c: b0b7eaa
h: refs/heads/master
v: v3
  • Loading branch information
Alexey Starikovskiy authored and Len Brown committed Feb 3, 2007
1 parent 3b134b3 commit 3665e71
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 3e643e77a929202455a0cc868c2030a5ba8d1371
refs/heads/master: b0b7eaaf0c7aefd118d3ff8640fbed75a9fad9a1
2 changes: 1 addition & 1 deletion trunk/drivers/acpi/namespace/nsparse.c
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ acpi_ns_one_complete_parse(acpi_native_uint pass_number,
/* Parse the AML */

ACPI_DEBUG_PRINT((ACPI_DB_PARSE, "*PARSE* pass %d parse\n",
pass_number));
(unsigned)pass_number));
status = acpi_ps_parse_aml(walk_state);

acpi_ps_delete_parse_tree(parse_root);
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/acpi/processor_idle.c
Original file line number Diff line number Diff line change
Expand Up @@ -1090,7 +1090,7 @@ static int acpi_processor_power_seq_show(struct seq_file *seq, void *offset)
seq_printf(seq, "latency[%03d] usage[%08d] duration[%020llu]\n",
pr->power.states[i].latency,
pr->power.states[i].usage,
pr->power.states[i].time);
(unsigned long long)pr->power.states[i].time);
}

end:
Expand Down
4 changes: 2 additions & 2 deletions trunk/drivers/acpi/tables/tbfadt.c
Original file line number Diff line number Diff line change
Expand Up @@ -222,8 +222,8 @@ void acpi_tb_create_local_fadt(struct acpi_table_header *table, u32 length)
*/
if (length > sizeof(struct acpi_table_fadt)) {
ACPI_WARNING((AE_INFO,
"FADT (revision %u) is longer than ACPI 2.0 version, truncating length 0x%X to 0x%X",
table->revision, length,
"FADT (revision %u) is longer than ACPI 2.0 version, truncating length 0x%X to 0x%zX",
table->revision, (unsigned)length,
sizeof(struct acpi_table_fadt)));
}

Expand Down
6 changes: 3 additions & 3 deletions trunk/drivers/acpi/utilities/utdebug.c
Original file line number Diff line number Diff line change
Expand Up @@ -180,8 +180,8 @@ acpi_ut_debug_print(u32 requested_debug_level,
if (thread_id != acpi_gbl_prev_thread_id) {
if (ACPI_LV_THREADS & acpi_dbg_level) {
acpi_os_printf
("\n**** Context Switch from TID %X to TID %X ****\n\n",
(unsigned)acpi_gbl_prev_thread_id, (unsigned)thread_id);
("\n**** Context Switch from TID %lX to TID %lX ****\n\n",
(unsigned long)acpi_gbl_prev_thread_id, (unsigned long)thread_id);
}

acpi_gbl_prev_thread_id = thread_id;
Expand All @@ -194,7 +194,7 @@ acpi_ut_debug_print(u32 requested_debug_level,
acpi_os_printf("%8s-%04ld ", module_name, line_number);

if (ACPI_LV_THREADS & acpi_dbg_level) {
acpi_os_printf("[%04X] ", (unsigned)thread_id);
acpi_os_printf("[%04lX] ", (unsigned long)thread_id);
}

acpi_os_printf("[%02ld] %-22.22s: ",
Expand Down

0 comments on commit 3665e71

Please sign in to comment.