|
@@ -4769,7 +4769,6 @@ int hdd_wlan_start_modules(struct hdd_context *hdd_ctx, bool reinit)
|
|
|
void *hif_ctx;
|
|
|
struct target_psoc_info *tgt_hdl;
|
|
|
unsigned long thermal_state = 0;
|
|
|
- bool is_sched_disabled = false;
|
|
|
uint8_t index = 0;
|
|
|
struct dev_set_param setparam[MAX_PDEV_PRE_ENABLE_PARAMS] = {};
|
|
|
|
|
@@ -5056,16 +5055,15 @@ int hdd_wlan_start_modules(struct hdd_context *hdd_ctx, bool reinit)
|
|
|
hdd_exit();
|
|
|
|
|
|
return 0;
|
|
|
-/*
|
|
|
- * Disable scheduler 1st so that scheduler thread doesn't send messages to fw
|
|
|
- * in parallel to the cleanup
|
|
|
- */
|
|
|
+
|
|
|
deconfigure_cds:
|
|
|
- is_sched_disabled = !dispatcher_disable();
|
|
|
hdd_deconfigure_cds(hdd_ctx);
|
|
|
sched_disable:
|
|
|
- if (!is_sched_disabled)
|
|
|
- dispatcher_disable();
|
|
|
+ /*
|
|
|
+ * Disable scheduler 1st so that scheduler thread doesn't send messages
|
|
|
+ * to fw in parallel to the cleanup
|
|
|
+ */
|
|
|
+ dispatcher_disable();
|
|
|
hdd_destroy_sysfs_files();
|
|
|
cds_post_disable();
|
|
|
unregister_notifiers:
|