diff options
author | Bob Moore <robert.moore@intel.com> | 2007-02-02 11:48:18 -0500 |
---|---|---|
committer | Len Brown <len.brown@intel.com> | 2007-02-02 21:14:21 -0500 |
commit | 0654a6d3c7a777ddccd35c5bbc5765ffbfe3ea96 (patch) | |
tree | a365ab6cab0619c779e9fb20cb9e51979addbb0d | |
parent | a72d47563bce9542b9a83521a4e8175076278ee9 (diff) |
ACPICA: Cast acpi_thread_id to UINT32 for debug output only
Signed-off-by: Alexey Starikovskiy <alexey.y.starikovskiy@intel.com>
Signed-off-by: Len Brown <len.brown@intel.com>
-rw-r--r-- | drivers/acpi/utilities/utdebug.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/drivers/acpi/utilities/utdebug.c b/drivers/acpi/utilities/utdebug.c index 9e9054e155c1..8ba8624b4b7b 100644 --- a/drivers/acpi/utilities/utdebug.c +++ b/drivers/acpi/utilities/utdebug.c | |||
@@ -180,9 +180,8 @@ acpi_ut_debug_print(u32 requested_debug_level, | |||
180 | if (thread_id != acpi_gbl_prev_thread_id) { | 180 | if (thread_id != acpi_gbl_prev_thread_id) { |
181 | if (ACPI_LV_THREADS & acpi_dbg_level) { | 181 | if (ACPI_LV_THREADS & acpi_dbg_level) { |
182 | acpi_os_printf | 182 | acpi_os_printf |
183 | ("\n**** Context Switch from TID %lX to TID %lX ****\n\n", | 183 | ("\n**** Context Switch from TID %X to TID %X ****\n\n", |
184 | (unsigned long) acpi_gbl_prev_thread_id, | 184 | (unsigned)acpi_gbl_prev_thread_id, (unsigned)thread_id); |
185 | (unsigned long) thread_id); | ||
186 | } | 185 | } |
187 | 186 | ||
188 | acpi_gbl_prev_thread_id = thread_id; | 187 | acpi_gbl_prev_thread_id = thread_id; |
@@ -195,7 +194,7 @@ acpi_ut_debug_print(u32 requested_debug_level, | |||
195 | acpi_os_printf("%8s-%04ld ", module_name, line_number); | 194 | acpi_os_printf("%8s-%04ld ", module_name, line_number); |
196 | 195 | ||
197 | if (ACPI_LV_THREADS & acpi_dbg_level) { | 196 | if (ACPI_LV_THREADS & acpi_dbg_level) { |
198 | acpi_os_printf("[%04lX] ", thread_id); | 197 | acpi_os_printf("[%04X] ", (unsigned)thread_id); |
199 | } | 198 | } |
200 | 199 | ||
201 | acpi_os_printf("[%02ld] %-22.22s: ", | 200 | acpi_os_printf("[%02ld] %-22.22s: ", |