summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--drivers/soc/qcom/glink_smem_native_xprt.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/soc/qcom/glink_smem_native_xprt.c b/drivers/soc/qcom/glink_smem_native_xprt.c
index b3f19121abfe..5bc307223cc0 100644
--- a/drivers/soc/qcom/glink_smem_native_xprt.c
+++ b/drivers/soc/qcom/glink_smem_native_xprt.c
@@ -1,4 +1,4 @@
-/* Copyright (c) 2014-2015, The Linux Foundation. All rights reserved.
+/* Copyright (c) 2014-2016, The Linux Foundation. All rights reserved.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 and
@@ -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_no_log(*src_local++, dest_local++);
+ __raw_writel(*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_no_log(src_local++);
+ *dest_local++ = __raw_readl(src_local++);
return dest;
}