aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/staging
diff options
context:
space:
mode:
authorChaehyun Lim <chaehyun.lim@gmail.com>2015-08-10 11:33:21 +0900
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2015-08-14 18:42:08 -0700
commit9504f96492f477b20b97ec92d480f646b7e7a488 (patch)
tree72c75a4252cbea179066e6cc5721707592106009 /drivers/staging
parentstaging: wilc1000: remove WILC_memcpy function (diff)
downloadlinux-dev-9504f96492f477b20b97ec92d480f646b7e7a488.tar.xz
linux-dev-9504f96492f477b20b97ec92d480f646b7e7a488.zip
staging: wilc1000: remove WILC_memcpy_INTERNAL
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>
Diffstat (limited to 'drivers/staging')
-rw-r--r--drivers/staging/wilc1000/wilc_strutils.c9
-rw-r--r--drivers/staging/wilc1000/wilc_strutils.h11
2 files changed, 0 insertions, 20 deletions
diff --git a/drivers/staging/wilc1000/wilc_strutils.c b/drivers/staging/wilc1000/wilc_strutils.c
index cc4e9fe0e7ce..ebc8668a7ab9 100644
--- a/drivers/staging/wilc1000/wilc_strutils.c
+++ b/drivers/staging/wilc1000/wilc_strutils.c
@@ -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);
-}
diff --git a/drivers/staging/wilc1000/wilc_strutils.h b/drivers/staging/wilc1000/wilc_strutils.h
index dbca73d86439..bb7b61d619d2 100644
--- a/drivers/staging/wilc1000/wilc_strutils.h
+++ b/drivers/staging/wilc1000/wilc_strutils.h
@@ -15,17 +15,6 @@
#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);