Skip to content

Commit ae0448b

Browse files
yifancomalexdeucher
authored andcommitted
drm/amdkfd: print address in hex format rather than decimal
Addresses should be printed in hex format. Signed-off-by: Yifan Zhang <[email protected]> Reviewed-by: Felix Kuehling <[email protected]> Signed-off-by: Alex Deucher <[email protected]>
1 parent cbfac7f commit ae0448b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_gpuvm.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1728,7 +1728,7 @@ int amdgpu_amdkfd_gpuvm_alloc_memory_of_gpu(
17281728
add_kgd_mem_to_kfd_bo_list(*mem, avm->process_info, user_addr);
17291729

17301730
if (user_addr) {
1731-
pr_debug("creating userptr BO for user_addr = %llu\n", user_addr);
1731+
pr_debug("creating userptr BO for user_addr = %llx\n", user_addr);
17321732
ret = init_user_pages(*mem, user_addr, criu_resume);
17331733
if (ret)
17341734
goto allocate_init_user_pages_failed;

0 commit comments

Comments
 (0)