Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 46343
b: refs/heads/master
c: 0654a6d
h: refs/heads/master
i:
  46341: 2095334
  46339: 43f69f8
  46335: 42a2349
v: v3
  • Loading branch information
Bob Moore authored and Len Brown committed Feb 3, 2007
1 parent 07ba747 commit 642a9e1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 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: a72d47563bce9542b9a83521a4e8175076278ee9
refs/heads/master: 0654a6d3c7a777ddccd35c5bbc5765ffbfe3ea96
7 changes: 3 additions & 4 deletions trunk/drivers/acpi/utilities/utdebug.c
Original file line number Diff line number Diff line change
Expand Up @@ -180,9 +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 %lX to TID %lX ****\n\n",
(unsigned long) acpi_gbl_prev_thread_id,
(unsigned long) thread_id);
("\n**** Context Switch from TID %X to TID %X ****\n\n",
(unsigned)acpi_gbl_prev_thread_id, (unsigned)thread_id);
}

acpi_gbl_prev_thread_id = thread_id;
Expand All @@ -195,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("[%04lX] ", thread_id);
acpi_os_printf("[%04X] ", (unsigned)thread_id);
}

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

0 comments on commit 642a9e1

Please sign in to comment.