summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--drivers/soc/qcom/msm_smd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/soc/qcom/msm_smd.c b/drivers/soc/qcom/msm_smd.c
index 3d1df1ecc420..6d4a57b9b385 100644
--- a/drivers/soc/qcom/msm_smd.c
+++ b/drivers/soc/qcom/msm_smd.c
@@ -278,7 +278,7 @@ static void *smd_memcpy32_to_fifo(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;
}
@@ -310,7 +310,7 @@ static void *smd_memcpy32_from_fifo(void *dest, const void *src,
num_bytes /= sizeof(uint32_t);
while (num_bytes--)
- *dest_local++ = __raw_readl(src_local++);
+ *dest_local++ = __raw_readl_no_log(src_local++);
return dest;
}