Prechádzať zdrojové kódy

qcacld-3.0: Trigger runtime pm sync resume during driver unload

Runtime PM needs to be sync resumed during driver unload. Hence, call
runtime pm sync resume during driver unload.

Change-Id: I20423871a82f33fcbaa3a64d741022f128785075
CRs-Fixed: 2615676
Alan Chen 5 rokov pred
rodič
commit
c88bfc6f5a
1 zmenil súbory, kde vykonal 13 pridanie a 0 odobranie
  1. 13 0
      core/hdd/src/wlan_hdd_main.c

+ 13 - 0
core/hdd/src/wlan_hdd_main.c

@@ -15035,10 +15035,23 @@ static void hdd_driver_unload(void)
 	struct osif_driver_sync *driver_sync;
 	struct hdd_context *hdd_ctx = cds_get_context(QDF_MODULE_ID_HDD);
 	QDF_STATUS status;
+	void *hif_ctx;
 
 	pr_info("%s: Unloading driver v%s\n", WLAN_MODULE_NAME,
 		QWLAN_VERSIONSTR);
 
+	hif_ctx = cds_get_context(QDF_MODULE_ID_HIF);
+	if (!hif_ctx) {
+		hdd_err_rl("hif context is Null");
+		return;
+	}
+
+	/*
+	 * Trigger runtime sync resume before setting unload in progress
+	 * such that resume can happen successfully
+	 */
+	hif_pm_runtime_sync_resume(hif_ctx);
+
 	cds_set_driver_loaded(false);
 	cds_set_unload_in_progress(true);