staging: wilc1000: remove WILC_strlen function
authorChaehyun Lim <chaehyun.lim@gmail.com>
Mon, 10 Aug 2015 02:33:14 +0000 (11:33 +0900)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sat, 15 Aug 2015 01:39:52 +0000 (18:39 -0700)
Remove WILC_strlen function that is changed to strlen.

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 a32b9c13e872c8792c9e63f463b8394a0b594cc2..205a06a5a11664a0292d25db6b7e900bcb155a81 100644 (file)
@@ -50,12 +50,3 @@ s32 WILC_strncmp(const char *pcStr1, const char *pcStr2,
        return s32Result;
 }
 
-/*!
- *  @author    syounan
- *  @date      18 Aug 2010
- *  @version   1.0
- */
-u32 WILC_strlen(const char *pcStr)
-{
-       return (u32)strlen(pcStr);
-}
index 9e3c5d9c5001a0a179b438bbacbcf74baaca1d9f..7c38e14fc3971a42644417f9ff17b5d5cf1b5077 100644 (file)
@@ -95,15 +95,5 @@ char *WILC_strncpy(char *pcTarget, const char *pcSource,
 s32 WILC_strncmp(const char *pcStr1, const char *pcStr2,
                         u32 u32Count);
 
-/*!
- *  @brief     gets the length of a string
- *  @param[in] pcStr the string
- *  @return    the length
- *  @note      this function repeats the functionality of standard strlen
- *  @author    syounan
- *  @date      18 Aug 2010
- *  @version   1.0
- */
-u32 WILC_strlen(const char *pcStr);
 
 #endif