staging: wilc1000: remove CoreConfiguratorInit
This patch removes CoreConfiguratorInit function, which is not doing anything else except printing a PRINT_D message and returing a s32Error. It is also removed the code 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:
parent
37316e8167
commit
109c483127
3 changed files with 0 additions and 31 deletions
|
@ -327,25 +327,6 @@ static inline u16 get_asoc_id(u8 *data)
|
||||||
return asoc_id;
|
return asoc_id;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* @brief initializes the Core Configurator
|
|
||||||
* @details
|
|
||||||
* @return Error code indicating success/failure
|
|
||||||
* @note
|
|
||||||
* @author mabubakr
|
|
||||||
* @date 1 Mar 2012
|
|
||||||
* @version 1.0
|
|
||||||
*/
|
|
||||||
|
|
||||||
s32 CoreConfiguratorInit(void)
|
|
||||||
{
|
|
||||||
s32 s32Error = 0;
|
|
||||||
|
|
||||||
PRINT_D(CORECONFIG_DBG, "CoreConfiguratorInit()\n");
|
|
||||||
|
|
||||||
return s32Error;
|
|
||||||
}
|
|
||||||
|
|
||||||
u8 *get_tim_elm(u8 *pu8msa, u16 u16RxLen, u16 u16TagParamOffset)
|
u8 *get_tim_elm(u8 *pu8msa, u16 u16RxLen, u16 u16TagParamOffset)
|
||||||
{
|
{
|
||||||
u16 u16index = 0;
|
u16 u16index = 0;
|
||||||
|
|
|
@ -156,7 +156,6 @@ typedef struct wid_site_survey_reslts {
|
||||||
} wid_site_survey_reslts_s;
|
} wid_site_survey_reslts_s;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
s32 CoreConfiguratorInit(void);
|
|
||||||
s32 CoreConfiguratorDeInit(void);
|
s32 CoreConfiguratorDeInit(void);
|
||||||
|
|
||||||
s32 SendConfigPkt(u8 u8Mode, tstrWID *pstrWIDs,
|
s32 SendConfigPkt(u8 u8Mode, tstrWID *pstrWIDs,
|
||||||
|
|
|
@ -6467,22 +6467,11 @@ s32 host_int_init(tstrWILC_WFIDrv **phWFIDrv)
|
||||||
up(&(pstrWFIDrv->gtOsCfgValuesSem));
|
up(&(pstrWFIDrv->gtOsCfgValuesSem));
|
||||||
|
|
||||||
/*TODO Code to setup simulation to be removed later*/
|
/*TODO Code to setup simulation to be removed later*/
|
||||||
/*Intialize configurator module*/
|
|
||||||
s32Error = CoreConfiguratorInit();
|
|
||||||
if (s32Error < 0) {
|
|
||||||
PRINT_ER("Failed to initialize core configurator\n");
|
|
||||||
goto _fail_mem_;
|
|
||||||
}
|
|
||||||
|
|
||||||
clients_count++; /* increase number of created entities */
|
clients_count++; /* increase number of created entities */
|
||||||
|
|
||||||
return s32Error;
|
return s32Error;
|
||||||
|
|
||||||
|
|
||||||
_fail_mem_:
|
|
||||||
if (pstrWFIDrv != NULL)
|
|
||||||
kfree(pstrWFIDrv);
|
|
||||||
del_timer_sync(&pstrWFIDrv->hRemainOnChannel);
|
|
||||||
_fail_timer_2:
|
_fail_timer_2:
|
||||||
up(&(pstrWFIDrv->gtOsCfgValuesSem));
|
up(&(pstrWFIDrv->gtOsCfgValuesSem));
|
||||||
del_timer_sync(&pstrWFIDrv->hConnectTimer);
|
del_timer_sync(&pstrWFIDrv->hConnectTimer);
|
||||||
|
|
Loading…
Add table
Reference in a new issue