|
@@ -749,9 +749,15 @@ static int __hdd_soc_recovery_reinit(struct device *dev,
|
|
|
enum qdf_bus_type bus_type)
|
|
|
{
|
|
|
int errno;
|
|
|
+ struct hdd_context *hdd_ctx = cds_get_context(QDF_MODULE_ID_HDD);
|
|
|
|
|
|
hdd_info("re-probing driver");
|
|
|
|
|
|
+ if (!hdd_ctx) {
|
|
|
+ hdd_err("hdd_ctx is null!");
|
|
|
+ return qdf_status_to_os_return(QDF_STATUS_E_RESOURCES);
|
|
|
+ }
|
|
|
+
|
|
|
hdd_soc_load_lock(dev);
|
|
|
cds_set_driver_in_bad_state(false);
|
|
|
|
|
@@ -780,6 +786,11 @@ static int __hdd_soc_recovery_reinit(struct device *dev,
|
|
|
hdd_handle_cached_commands();
|
|
|
}
|
|
|
|
|
|
+ if (!hdd_is_any_interface_open(hdd_ctx)) {
|
|
|
+ hdd_debug("restarting idle shutdown timer");
|
|
|
+ hdd_psoc_idle_timer_start(hdd_ctx);
|
|
|
+ }
|
|
|
+
|
|
|
hdd_soc_load_unlock(dev);
|
|
|
hdd_send_driver_ready_to_user();
|
|
|
|