uio: msm_sharedmem: Use proper format to print phys_addr_t
Use proper printk format specifier to print phys_addr_t type variable. Change-Id: I7c55e44e813d8d41e1ead03280044c8542a24922 Signed-off-by: Prasad Sodagudi <psodagud@codeaurora.org>
This commit is contained in:
parent
060c1d5d23
commit
73283bb3b8
1 changed files with 2 additions and 2 deletions
|
@ -95,8 +95,8 @@ static void setup_shared_ram_perms(u32 client_id, phys_addr_t addr, u32 size)
|
||||||
if (ret == -ENOSYS)
|
if (ret == -ENOSYS)
|
||||||
pr_warn("hyp_assign_phys is not supported!");
|
pr_warn("hyp_assign_phys is not supported!");
|
||||||
else
|
else
|
||||||
pr_err("hyp_assign_phys failed IPA=0x%016llX size=%u err=%d\n",
|
pr_err("hyp_assign_phys failed IPA=0x016%pa size=%u err=%d\n",
|
||||||
addr, size, ret);
|
&addr, size, ret);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue