Prechádzať zdrojové kódy

qcacld-3.0: Add a conditional wrapper for pm_qos_notifier functions

In order to resolve compilation issues with kernel 5.7+, add
conditional wrappers for pm_qos_notifier functions.

Change-Id: I7d6fad84f54f62f4a8d4ed68e86a1909e2eca243
CRs-Fixed: 2849793
Alan Chen 4 rokov pred
rodič
commit
ac69240525
1 zmenil súbory, kde vykonal 30 pridanie a 4 odobranie
  1. 30 4
      core/hdd/src/wlan_hdd_main.c

+ 30 - 4
core/hdd/src/wlan_hdd_main.c

@@ -3731,6 +3731,34 @@ static int hdd_wlan_register_ip6_notifier(struct hdd_context *hdd_ctx)
 #endif
 
 #ifdef FEATURE_RUNTIME_PM
+#if LINUX_VERSION_CODE >= KERNEL_VERSION(5, 7, 0)
+static int hdd_pm_qos_add_notifier(struct hdd_context *hdd_ctx)
+{
+	return dev_pm_qos_add_notifier(hdd_ctx->parent_dev,
+				       &hdd_ctx->pm_qos_notifier,
+				       DEV_PM_QOS_RESUME_LATENCY);
+}
+
+static int hdd_pm_qos_remove_notifier(struct hdd_context *hdd_ctx)
+{
+	return dev_pm_qos_remove_notifier(hdd_ctx->parent_dev,
+					  &hdd_ctx->pm_qos_notifier,
+					  DEV_PM_QOS_RESUME_LATENCY);
+}
+#else
+static int hdd_pm_qos_add_notifier(struct hdd_context *hdd_ctx)
+{
+	return pm_qos_add_notifier(PM_QOS_CPU_DMA_LATENCY,
+				   &hdd_ctx->pm_qos_notifier);
+}
+
+static int hdd_pm_qos_remove_notifier(struct hdd_context *hdd_ctx)
+{
+	return pm_qos_remove_notifier(PM_QOS_CPU_DMA_LATENCY,
+				      &hdd_ctx->pm_qos_notifier);
+}
+#endif
+
 /**
  * hdd_wlan_register_pm_qos_notifier() - register PM QOS notifier
  * @hdd_ctx: Pointer to hdd context
@@ -3751,8 +3779,7 @@ static int hdd_wlan_register_pm_qos_notifier(struct hdd_context *hdd_ctx)
 
 	qdf_spinlock_create(&hdd_ctx->pm_qos_lock);
 	hdd_ctx->pm_qos_notifier.notifier_call = wlan_hdd_pm_qos_notify;
-	ret = pm_qos_add_notifier(PM_QOS_CPU_DMA_LATENCY,
-				  &hdd_ctx->pm_qos_notifier);
+	ret = hdd_pm_qos_add_notifier(hdd_ctx);
 	if (ret)
 		hdd_err("Failed to register PM_QOS notifier: %d", ret);
 	else
@@ -3779,8 +3806,7 @@ static void hdd_wlan_unregister_pm_qos_notifier(struct hdd_context *hdd_ctx)
 		return;
 	}
 
-	ret = pm_qos_remove_notifier(PM_QOS_CPU_DMA_LATENCY,
-				     &hdd_ctx->pm_qos_notifier);
+	ret = hdd_pm_qos_remove_notifier(hdd_ctx);
 	if (ret)
 		hdd_warn("Failed to remove qos notifier, err = %d\n", ret);