Преглед изворни кода

qcacld-3.0: request firmware without userhelper

The request_firmware() will take too long time(60s) when the
requested fw file do not exist. Replace this API with
request_firmware_direct.

Change-Id: Ie40db69a24dc1e0b86f140ca1aad91bd3b10e95e
CRs-Fixed: 2435125
Guisen Yang пре 6 година
родитељ
комит
77814d8f02
2 измењених фајлова са 11 додато и 7 уклоњено
  1. 4 3
      core/bmi/src/ol_fw.c
  2. 7 4
      core/hdd/src/wlan_hdd_cfg.c

+ 4 - 3
core/bmi/src/ol_fw.c

@@ -308,9 +308,10 @@ __ol_transfer_bin_file(struct ol_context *ol_ctx, enum ATH_BIN_FILE file,
 			if (bd_id_filename[i]) {
 				BMI_DBG("%s: Trying to load %s",
 					 __func__, bd_id_filename[i]);
-				status = request_firmware(&fw_entry,
-							  bd_id_filename[i],
-							  qdf_dev->dev);
+				status = request_firmware_direct(
+						&fw_entry,
+						bd_id_filename[i],
+						qdf_dev->dev);
 				if (!status)
 					break;
 				BMI_ERR("%s: Failed to get %s:%d",

+ 7 - 4
core/hdd/src/wlan_hdd_cfg.c

@@ -239,13 +239,16 @@ QDF_STATUS hdd_update_mac_config(struct hdd_context *hdd_ctx)
 	QDF_STATUS qdf_status = QDF_STATUS_SUCCESS;
 
 	memset(mac_table, 0, sizeof(mac_table));
-	status = request_firmware(&fw, WLAN_MAC_FILE, hdd_ctx->parent_dev);
+	status = request_firmware_direct(&fw,
+					 WLAN_MAC_FILE,
+					 hdd_ctx->parent_dev);
 	if (status) {
 		/*
-		 * request_firmware "fails" if the file is not found, which is a
-		 * valid setup for us, so log using debug instead of error
+		 * request_firmware_direct "fails" if the file is not found,
+		 * which is a valid setup for us, so log using debug instead
+		 * of error
 		 */
-		hdd_debug("request_firmware failed; status:%d", status);
+		hdd_debug("request_firmware_direct failed; status:%d", status);
 		return QDF_STATUS_E_FAILURE;
 	}