[Sound-open-firmware] [PATCH] host: string: remove xthal references.

Liam Girdwood liam.r.girdwood at linux.intel.com
Thu Apr 12 17:16:53 CEST 2018


xthal only needed for xtensa arch.

Signed-off-by: Liam Girdwood <liam.r.girdwood at linux.intel.com>
---
 src/arch/host/include/arch/string.h | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/src/arch/host/include/arch/string.h b/src/arch/host/include/arch/string.h
index 56258b34..6b2755dc 100644
--- a/src/arch/host/include/arch/string.h
+++ b/src/arch/host/include/arch/string.h
@@ -32,9 +32,7 @@
 #ifndef __INCLUDE_ARCH_STRING_SOF__
 #define __INCLUDE_ARCH_STRING_SOF__
 
-void *xthal_memcpy(void *dst, const void *src, size_t len);
-
 #define arch_memcpy(dest, src, size) \
-	xthal_memcpy(dest, src, size)
+	memcpy(dest, src, size)
 
 #endif
-- 
2.14.1



More information about the Sound-open-firmware mailing list