Commit 948ceec7 authored by Alex Deucher's avatar Alex Deucher

drm/amdgpu/mes: fix format specifier for size_t

To avoid a warning on 32 bit.
Reported-by: default avatarkernel test robot <lkp@intel.com>
Reviewed-by: default avatarGuchun Chen <guchun.chen@amd.com>
Signed-off-by: default avatarAlex Deucher <alexander.deucher@amd.com>
parent e2ce1d9a
......@@ -135,7 +135,7 @@ static int amdgpu_mes_doorbell_init(struct amdgpu_device *adev)
adev->mes.doorbell_id_offset = doorbell_start_offset / sizeof(u32);
adev->mes.max_doorbell_slices = doorbell_process_limit;
DRM_INFO("max_doorbell_slices=%ld\n", doorbell_process_limit);
DRM_INFO("max_doorbell_slices=%zu\n", doorbell_process_limit);
return 0;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment