staging: wilc1000: remove CoreConfiguratorDeInit

This patch removes CoreConfiguratorDeInit function, which is not doing
anything else except printing a PRINT_D message and returning a
s32Error. It is also removed the codes that is calling this function.

Signed-off-by: Chaehyun Lim <chaehyun.lim@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Chaehyun Lim
2015-09-22 22:47:37 +09:00
committed by Greg Kroah-Hartman
parent 6a27224f96
commit c22dbd4bb8
3 changed files with 0 additions and 24 deletions

View File

@@ -700,26 +700,6 @@ s32 DeallocateSurveyResults(wid_site_survey_reslts_s *pstrSurveyResults)
}
#endif
/**
* @brief Deinitializes the Core Configurator
* @details
* @return Error code indicating success/failure
* @note
* @author mabubakr
* @date 1 Mar 2012
* @version 1.0
*/
s32 CoreConfiguratorDeInit(void)
{
s32 s32Error = 0;
PRINT_D(CORECONFIG_DBG, "CoreConfiguratorDeInit()\n");
return s32Error;
}
/*Using the global handle of the driver*/
extern wilc_wlan_oup_t *gpstrWlanOps;
/**

View File

@@ -156,8 +156,6 @@ typedef struct wid_site_survey_reslts {
} wid_site_survey_reslts_s;
#endif
s32 CoreConfiguratorDeInit(void);
s32 SendConfigPkt(u8 u8Mode, tstrWID *pstrWIDs,
u32 u32WIDsCount, bool bRespRequired, u32 drvHandler);
s32 ParseNetworkInfo(u8 *pu8MsgBuffer, tstrNetworkInfo **ppstrNetworkInfo);

View File

@@ -6527,8 +6527,6 @@ s32 host_int_deinit(tstrWILC_WFIDrv *hWFIDrv)
pstrWFIDrv->strWILC_UsrScanReq.pfUserScanResult = NULL;
}
/*deinit configurator and simulator*/
CoreConfiguratorDeInit();
pstrWFIDrv->enuHostIFstate = HOST_IF_IDLE;