Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit f37a744f authored by Prasad Sodagudi's avatar Prasad Sodagudi Committed by Gerrit - the friendly Code Review server
Browse files

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: default avatarPrasad Sodagudi <psodagud@codeaurora.org>
[riteshh@codeaurora.org: fixed trivial merge conflicts]
Signed-off-by: default avatarRitesh Harjani <riteshh@codeaurora.org>
Signed-off-by: default avatarAnkit Jain <jankit@codeaurora.org>
parent ebd5df27
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -85,8 +85,8 @@ static void setup_shared_ram_perms(u32 client_id, phys_addr_t addr, u32 size)
		if (ret == -EINVAL)
			pr_warn("hyp_assign_phys is not supported!\n");
		else
			pr_err("hyp_assign_phys failed IPA=0x%016llX size=%u err=%d\n",
				addr, size, ret);
			pr_err("hyp_assign_phys failed IPA=0x016%pa size=%u err=%d\n",
				&addr, size, ret);
	}
}