[Sound-open-firmware] [PATCH] host: string: remove xthal references.
            
            
            
                12 Apr
                
                    2018
                
            
            
                12 Apr
                
                '18
                
            
            
            
        
    
                5:16 p.m.
            
        xthal only needed for xtensa arch.
Signed-off-by: Liam Girdwood liam.r.girdwood@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
    
        2763
        
      
          Age (days ago)
        
      
        2763
        
    
          Last active (days ago)
        
        
        
        0 comments
    
    
        
        1 participants
    
    
    
    
    
    
    
    
    participants (1)
- 
                
Liam Girdwood