aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChaehyun Lim <[email protected]>2015-08-10 11:33:15 +0900
committerGreg Kroah-Hartman <[email protected]>2015-08-14 18:39:52 -0700
commit85b509f18a7f27d6cc296d62e96e4632c83161fd (patch)
treea6365c1e2d2dc6d5059803f91c3a01d72455bb64
parent1799cb6188beeff1b36c8968f942e9a15759b773 (diff)
staging: wilc1000: Use strncpy instead of WILC_strncpy
Use strncpy instead of WILC_strncpy that is a custom function Signed-off-by: Chaehyun Lim <[email protected]> Signed-off-by: Greg Kroah-Hartman <[email protected]>
-rw-r--r--drivers/staging/wilc1000/coreconfigurator.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/wilc1000/coreconfigurator.c b/drivers/staging/wilc1000/coreconfigurator.c
index c59d9ba298cc..a950d4054e38 100644
--- a/drivers/staging/wilc1000/coreconfigurator.c
+++ b/drivers/staging/wilc1000/coreconfigurator.c
@@ -1577,7 +1577,7 @@ s32 further_process_response(u8 *resp,
case WID_ADR:
create_mac_addr(cfg_str, resp + idx);
- WILC_strncpy(pstrWIDresult->ps8WidVal, cfg_str, strlen(cfg_str));
+ strncpy(pstrWIDresult->ps8WidVal, cfg_str, strlen(cfg_str));
pstrWIDresult->ps8WidVal[strlen(cfg_str)] = '\0';
break;