Przeglądaj źródła

qcacld-3.0: Move pld_init just before pld_register

The PLD data structures initialized in pld_init() are not used before
PLD registration, and do not need to be the very first thing initialized
in the driver. Move the call to pld_init() to immediately before these
data structures are used for the first time in the PLD registration
process.

Change-Id: I5bee6b03eddfd749758f48a82f5c7f0a870b1504
CRs-Fixed: 2317859
Dustin Brown 6 lat temu
rodzic
commit
25843ad715
1 zmienionych plików z 12 dodań i 11 usunięć
  1. 12 11
      core/hdd/src/wlan_hdd_main.c

+ 12 - 11
core/hdd/src/wlan_hdd_main.c

@@ -12718,16 +12718,10 @@ static int hdd_driver_load(void)
 	       WLAN_MODULE_NAME,
 	       g_wlan_driver_version);
 
-	errno = pld_init();
-	if (errno) {
-		hdd_fln("Failed to init PLD; errno:%d", errno);
-		return errno;
-	}
-
 	errno = hdd_init();
 	if (errno) {
 		hdd_fln("Failed to init HDD; errno:%d", errno);
-		goto pld_deinit;
+		goto exit;
 	}
 
 	status = hdd_component_init();
@@ -12752,16 +12746,24 @@ static int hdd_driver_load(void)
 		goto wakelock_destroy;
 	}
 
+	errno = pld_init();
+	if (errno) {
+		hdd_fln("Failed to init PLD; errno:%d", errno);
+		goto param_destroy;
+	}
+
 	errno = wlan_hdd_register_driver();
 	if (errno) {
 		hdd_fln("Failed to register driver; errno:%d", errno);
-		goto param_destroy;
+		goto pld_deinit;
 	}
 
 	pr_info("%s: driver loaded\n", WLAN_MODULE_NAME);
 
 	return 0;
 
+pld_deinit:
+	pld_deinit();
 param_destroy:
 	wlan_hdd_state_ctrl_param_destroy();
 wakelock_destroy:
@@ -12770,9 +12772,8 @@ comp_deinit:
 	hdd_component_deinit();
 hdd_deinit:
 	hdd_deinit();
-pld_deinit:
-	pld_deinit();
 
+exit:
 	return errno;
 }
 
@@ -12804,12 +12805,12 @@ static void hdd_driver_unload(void)
 		qdf_cancel_delayed_work(&hdd_ctx->iface_idle_work);
 
 	wlan_hdd_unregister_driver();
+	pld_deinit();
 	wlan_hdd_state_ctrl_param_destroy();
 	hdd_set_conparam(0);
 	qdf_wake_lock_destroy(&wlan_wake_lock);
 	hdd_component_deinit();
 	hdd_deinit();
-	pld_deinit();
 }
 
 #ifndef MODULE