|
@@ -9406,7 +9406,15 @@ int hdd_psoc_idle_shutdown(struct device *dev)
|
|
|
|
|
|
static int __hdd_psoc_idle_restart(struct hdd_context *hdd_ctx)
|
|
|
{
|
|
|
- return hdd_wlan_start_modules(hdd_ctx, false);
|
|
|
+ int ret;
|
|
|
+
|
|
|
+ hdd_soc_idle_restart_lock();
|
|
|
+
|
|
|
+ ret = hdd_wlan_start_modules(hdd_ctx, false);
|
|
|
+
|
|
|
+ hdd_soc_idle_restart_unlock();
|
|
|
+
|
|
|
+ return ret;
|
|
|
}
|
|
|
|
|
|
int hdd_psoc_idle_restart(struct device *dev)
|
|
@@ -9433,7 +9441,9 @@ int hdd_trigger_psoc_idle_restart(struct hdd_context *hdd_ctx)
|
|
|
return 0;
|
|
|
}
|
|
|
|
|
|
+ hdd_soc_idle_restart_lock();
|
|
|
ret = pld_idle_restart(hdd_ctx->parent_dev, hdd_psoc_idle_restart);
|
|
|
+ hdd_soc_idle_restart_unlock();
|
|
|
|
|
|
return ret;
|
|
|
}
|
|
@@ -13693,11 +13703,15 @@ static int hdd_mode_change_psoc_idle_shutdown(struct device *dev)
|
|
|
static int hdd_mode_change_psoc_idle_restart(struct device *dev)
|
|
|
{
|
|
|
struct hdd_context *hdd_ctx = cds_get_context(QDF_MODULE_ID_HDD);
|
|
|
+ int ret;
|
|
|
|
|
|
if (!hdd_ctx)
|
|
|
return -EINVAL;
|
|
|
+ hdd_soc_idle_restart_lock();
|
|
|
+ ret = hdd_wlan_start_modules(hdd_ctx, false);
|
|
|
+ hdd_soc_idle_restart_unlock();
|
|
|
|
|
|
- return hdd_wlan_start_modules(hdd_ctx, false);
|
|
|
+ return ret;
|
|
|
}
|
|
|
|
|
|
/**
|