summaryrefslogtreecommitdiffstatshomepage
path: root/drivers/cc3100/src
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/cc3100/src')
-rw-r--r--drivers/cc3100/src/wlan.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/drivers/cc3100/src/wlan.c b/drivers/cc3100/src/wlan.c
index 0cc825439f..66c8333d65 100644
--- a/drivers/cc3100/src/wlan.c
+++ b/drivers/cc3100/src/wlan.c
@@ -39,7 +39,6 @@
/*****************************************************************************/
/* Include files */
/*****************************************************************************/
-#include <string.h>
#include "simplelink.h"
#include "protocol.h"
#include "driver.h"
@@ -76,9 +75,7 @@ _i16 sl_WlanConnect(_i8* pName, _i16 NameLen, _u8 *pMacAddr, SlSecParams_t* pSe
_SlWlanConnectMsg_u Msg;
_SlCmdCtrl_t CmdCtrl;
- // Clear the above structures
- memset (&Msg, 0, sizeof(Msg));
- memset (&CmdCtrl, 0, sizeof(CmdCtrl));
+ sl_Memset (&Msg, 0, sizeof(Msg));
CmdCtrl.TxDescLen = 0;/* init */
CmdCtrl.RxDescLen = sizeof(_BasicResponse_t);