Revert "soc: qcom: glink_smem_native_xprt: Use correct IO Read/Write"
This reverts commit 53679dae72
("soc: qcom: glink_smem_native_xprt:
Use correct IO Read/Write").
Use no_log variant of IO Read/Write APIs to avoid log storm and improve
performance.
CRs-Fixed: 1001212
Change-Id: I89d9dd8b4cb720f8f968df2a35cbb52b4d09b589
Signed-off-by: Karthikeyan Ramasubramanian <kramasub@codeaurora.org>
This commit is contained in:
parent
1136cf88f2
commit
e1490c2ae3
1 changed files with 2 additions and 2 deletions
|
@ -313,7 +313,7 @@ static void *memcpy32_toio(void *dest, const void *src, size_t num_bytes)
|
|||
num_bytes /= sizeof(uint32_t);
|
||||
|
||||
while (num_bytes--)
|
||||
__raw_writel(*src_local++, dest_local++);
|
||||
__raw_writel_no_log(*src_local++, dest_local++);
|
||||
|
||||
return dest;
|
||||
}
|
||||
|
@ -339,7 +339,7 @@ static void *memcpy32_fromio(void *dest, const void *src, size_t num_bytes)
|
|||
num_bytes /= sizeof(uint32_t);
|
||||
|
||||
while (num_bytes--)
|
||||
*dest_local++ = __raw_readl(src_local++);
|
||||
*dest_local++ = __raw_readl_no_log(src_local++);
|
||||
|
||||
return dest;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue