staging: wilc1000: remove WILC_memcpy_INTERNAL
authorChaehyun Lim <chaehyun.lim@gmail.com>
Mon, 10 Aug 2015 02:33:21 +0000 (11:33 +0900)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sat, 15 Aug 2015 01:42:08 +0000 (18:42 -0700)
Remove WILC_memcpy_INTERNAL that is used in the WILC_memcpy
because WILC_memcpy is replaced by memcpy.

Signed-off-by: Chaehyun Lim <chaehyun.lim@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/wilc1000/wilc_strutils.c
drivers/staging/wilc1000/wilc_strutils.h

index cc4e9fe0e7ce8766476fcde46c6a313b5254848d..ebc8668a7ab96445bfd4ac94623528b1817908e5 100644 (file)
@@ -6,15 +6,6 @@
 
 
 
-/*!
- *  @author    syounan
- *  @date      18 Aug 2010
- *  @version   1.0
- */
-void WILC_memcpy_INTERNAL(void *pvTarget, const void *pvSource, u32 u32Count)
-{
-       memcpy(pvTarget, pvSource, u32Count);
-}
 
 
 
index dbca73d86439d1e6a51a689a90ca13879ceed20d..bb7b61d619d277b33b8a385bd9b399eb70947cc9 100644 (file)
 #include "wilc_errorsupport.h"
 
 
-/*!
- *  @brief     Internal implementation for memory copy
- *  @param[in] pvTarget the target buffer to which the data is copied into
- *  @param[in] pvSource pointer to the second memory location
- *  @param[in] u32Count the size of the data to copy
- *  @note      this function should not be used directly, use WILC_memcpy instead
- *  @author    syounan
- *  @date      18 Aug 2010
- *  @version   1.0
- */
-void WILC_memcpy_INTERNAL(void *pvTarget, const void *pvSource, u32 u32Count);