|
@@ -2764,7 +2764,7 @@ ucfg_mlme_set_rf_test_mode_enabled(struct wlan_objmgr_psoc *psoc, bool value)
|
|
|
* ucfg_mlme_is_relaxed_6ghz_conn_policy_enabled() - Get 6ghz relaxed
|
|
|
* connection policy flag
|
|
|
* @psoc: pointer to psoc object
|
|
|
- * @value: Value that needs to be set from the caller
|
|
|
+ * @value: pointer to hold the value of flag
|
|
|
*
|
|
|
* Inline UCFG API to be used by HDD/OSIF callers
|
|
|
*
|
|
@@ -2777,6 +2777,23 @@ ucfg_mlme_is_relaxed_6ghz_conn_policy_enabled(struct wlan_objmgr_psoc *psoc,
|
|
|
return wlan_mlme_is_relaxed_6ghz_conn_policy_enabled(psoc, value);
|
|
|
}
|
|
|
|
|
|
+/**
|
|
|
+ * ucfg_mlme_set_relaxed_6ghz_conn_policy() - Set 6ghz relaxed
|
|
|
+ * connection policy flag
|
|
|
+ * @psoc: pointer to psoc object
|
|
|
+ * @value: Value that needs to be set
|
|
|
+ *
|
|
|
+ * Inline UCFG API to be used by HDD/OSIF callers
|
|
|
+ *
|
|
|
+ * Return: QDF Status
|
|
|
+ */
|
|
|
+static inline QDF_STATUS
|
|
|
+ucfg_mlme_set_relaxed_6ghz_conn_policy(struct wlan_objmgr_psoc *psoc,
|
|
|
+ bool value)
|
|
|
+{
|
|
|
+ return wlan_mlme_set_relaxed_6ghz_conn_policy(psoc, value);
|
|
|
+}
|
|
|
+
|
|
|
/**
|
|
|
* ucfg_mlme_get_opr_rate() - Get operational rate set
|
|
|
* @psoc: pointer to vdev object
|