|
@@ -1569,6 +1569,9 @@ static int wlan_hdd_runtime_suspend(struct device *dev)
|
|
|
return 0;
|
|
|
}
|
|
|
|
|
|
+ if (!hdd_is_runtime_pm_enabled(hdd_ctx))
|
|
|
+ return 0;
|
|
|
+
|
|
|
if (ucfg_scan_get_pdev_status(hdd_ctx->pdev) !=
|
|
|
SCAN_NOT_IN_PROGRESS) {
|
|
|
hdd_debug("Scan in progress, ignore runtime suspend");
|
|
@@ -1655,6 +1658,9 @@ static int wlan_hdd_runtime_resume(struct device *dev)
|
|
|
return 0;
|
|
|
}
|
|
|
|
|
|
+ if (!hdd_is_runtime_pm_enabled(hdd_ctx))
|
|
|
+ return 0;
|
|
|
+
|
|
|
hdd_ctx->runtime_resume_start_time_stamp =
|
|
|
qdf_get_log_timestamp_usecs();
|
|
|
delta = hdd_ctx->runtime_resume_start_time_stamp -
|