|
@@ -1184,6 +1184,7 @@ int wlan_hdd_pm_qos_notify(struct notifier_block *nb, unsigned long curr_val,
|
|
|
struct hdd_context *hdd_ctx = container_of(nb, struct hdd_context,
|
|
|
pm_qos_notifier);
|
|
|
void *hif_ctx;
|
|
|
+ bool is_any_sta_connected = false;
|
|
|
|
|
|
if (hdd_ctx->driver_status != DRIVER_MODULES_ENABLED) {
|
|
|
hdd_debug_rl("Driver Module closed; skipping pm qos notify");
|
|
@@ -1194,11 +1195,15 @@ int wlan_hdd_pm_qos_notify(struct notifier_block *nb, unsigned long curr_val,
|
|
|
if (!hif_ctx)
|
|
|
return -EINVAL;
|
|
|
|
|
|
- hdd_debug("PM QOS update: runtime_pm_prevented %d Current value: %ld",
|
|
|
- hdd_ctx->runtime_pm_prevented, curr_val);
|
|
|
+ is_any_sta_connected = hdd_is_any_sta_connected(hdd_ctx);
|
|
|
+
|
|
|
+ hdd_debug("PM QOS update: runtime_pm_prevented %d Current value: %ld, is_any_sta_connected %d",
|
|
|
+ hdd_ctx->runtime_pm_prevented, curr_val,
|
|
|
+ is_any_sta_connected);
|
|
|
qdf_spin_lock_irqsave(&hdd_ctx->pm_qos_lock);
|
|
|
|
|
|
if (!hdd_ctx->runtime_pm_prevented &&
|
|
|
+ is_any_sta_connected &&
|
|
|
curr_val != wlan_hdd_get_pm_qos_cpu_latency()) {
|
|
|
hif_pm_runtime_get_noresume(hif_ctx, RTPM_ID_QOS_NOTIFY);
|
|
|
hdd_ctx->runtime_pm_prevented = true;
|