mirror of
https://github.com/projectacrn/acrn-hypervisor.git
synced 2026-01-04 23:24:56 +00:00
hv:refine 'uint64_t' string print format in comm moudle
Use "0x%lx" string to format 'uint64_t' type value, instead of "0x%llx". Tracked-On: #4020 Signed-off-by: Yonghua Huang <yonghua.huang@intel.com>
This commit is contained in:
@@ -996,7 +996,7 @@ int32_t profiling_set_control(struct acrn_vm *vm, uint64_t addr)
|
||||
sep_collection_switch = prof_control.switches;
|
||||
|
||||
dev_dbg(ACRN_DBG_PROFILING,
|
||||
" old_switch: %llu sep_collection_switch: %llu!",
|
||||
" old_switch: %lu sep_collection_switch: %lu!",
|
||||
old_switch, sep_collection_switch);
|
||||
|
||||
for (i = 0U; i < (uint16_t)MAX_SEP_FEATURE_ID; i++) {
|
||||
@@ -1030,7 +1030,7 @@ int32_t profiling_set_control(struct acrn_vm *vm, uint64_t addr)
|
||||
socwatch_collection_switch = prof_control.switches;
|
||||
|
||||
dev_dbg(ACRN_DBG_PROFILING,
|
||||
"socwatch_collection_switch: %llu!",
|
||||
"socwatch_collection_switch: %lu!",
|
||||
socwatch_collection_switch);
|
||||
|
||||
if (socwatch_collection_switch != 0UL) {
|
||||
|
||||
Reference in New Issue
Block a user