qcacmn: In Epping, Pass BMI context to bmi_done and bmi_cleanup

In epping_enable bmi_done is called with null context due to which
bmi finish is incomplete

Pass BMI Context before invoking bmi_done and bmi_cleanup

Change-Id: Ic7f424a03cb92d6d3218b5fa148ea95d6011cfed
CRs-Fixed: 2419720
This commit is contained in:
Visweswara Tanuku
2019-03-20 14:30:26 +05:30
committed by nshrivas
부모 5e3af684b5
커밋 5832077a65

파일 보기

@@ -198,13 +198,6 @@ static void epping_update_ol_config(void)
static
QDF_STATUS epping_bmi_download_fw(struct ol_context *ol_ctx)
{
ol_ctx = cds_get_context(QDF_MODULE_ID_BMI);
if (!ol_ctx) {
QDF_TRACE(QDF_MODULE_ID_QDF, QDF_TRACE_LEVEL_FATAL,
"%s: ol_ctx is NULL", __func__);
return QDF_STATUS_E_INVAL;
}
epping_update_ol_config();
/* Initialize BMI and Download firmware */
@@ -280,6 +273,13 @@ int epping_enable(struct device *parent_dev, bool rtnl_held)
tgt_info = hif_get_target_info_handle(scn);
ol_ctx = cds_get_context(QDF_MODULE_ID_BMI);
if (!ol_ctx) {
QDF_TRACE(QDF_MODULE_ID_QDF, QDF_TRACE_LEVEL_FATAL,
"%s: ol_ctx is NULL", __func__);
return A_ERROR;
}
if (epping_bmi_download_fw(ol_ctx) != QDF_STATUS_SUCCESS)
return A_ERROR;