Browse Source

drm/i915/gvt: fix an error string format

It is better to use %p format for void pointers instead of casting them
because a void* is not necessary a 64 bits value.

Signed-off-by: Jérémy Lefaure <jeremy.lefaure@lse.epita.fr>
Signed-off-by: Zhenyu Wang <zhenyuw@linux.intel.com>
Jérémy Lefaure 8 years ago
parent
commit
2cce9b2894
1 changed files with 1 additions and 1 deletions
  1. 1 1
      drivers/gpu/drm/i915/gvt/gtt.c

+ 1 - 1
drivers/gpu/drm/i915/gvt/gtt.c

@@ -1944,7 +1944,7 @@ static int create_scratch_page(struct intel_vgpu *vgpu)
 	mfn = intel_gvt_hypervisor_virt_to_mfn(vaddr);
 	mfn = intel_gvt_hypervisor_virt_to_mfn(vaddr);
 
 
 	if (mfn == INTEL_GVT_INVALID_ADDR) {
 	if (mfn == INTEL_GVT_INVALID_ADDR) {
-		gvt_err("fail to translate vaddr:0x%llx\n", (u64)vaddr);
+		gvt_err("fail to translate vaddr: 0x%p\n", vaddr);
 		__free_page(gtt->scratch_page);
 		__free_page(gtt->scratch_page);
 		gtt->scratch_page = NULL;
 		gtt->scratch_page = NULL;
 		return -ENXIO;
 		return -ENXIO;