Commit c22dbd4b authored by Chaehyun Lim's avatar Chaehyun Lim Committed by Greg Kroah-Hartman
Browse files

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: default avatarChaehyun Lim <chaehyun.lim@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 6a27224f
Loading
Loading
Loading
Loading
+0 −20
Original line number Diff line number Diff line
@@ -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;
/**
+0 −2
Original line number Diff line number Diff line
@@ -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);
+0 −2
Original line number Diff line number Diff line
@@ -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;