|
@@ -52,6 +52,17 @@ wlan_twt_cfg_get_res_flag(struct wlan_objmgr_psoc *psoc, bool *val);
|
|
|
QDF_STATUS
|
|
|
wlan_twt_cfg_get_support_in_11n(struct wlan_objmgr_psoc *psoc,
|
|
|
bool *val);
|
|
|
+
|
|
|
+/**
|
|
|
+ * wlan_twt_cfg_get_support_requestor() - Get TWT support of requestor
|
|
|
+ * @psoc: Pointer to global psoc object
|
|
|
+ * @val: pointer to output variable
|
|
|
+ *
|
|
|
+ * Return: QDF_STATUS_SUCCESS
|
|
|
+ */
|
|
|
+QDF_STATUS
|
|
|
+wlan_twt_cfg_get_support_requestor(struct wlan_objmgr_psoc *psoc,
|
|
|
+ bool *val);
|
|
|
#else
|
|
|
static inline QDF_STATUS
|
|
|
wlan_twt_cfg_get_res_flag(struct wlan_objmgr_psoc *psoc, bool *val)
|
|
@@ -71,6 +82,12 @@ wlan_twt_cfg_get_support_in_11n(struct wlan_objmgr_psoc *psoc,
|
|
|
{
|
|
|
return QDF_STATUS_SUCCESS;
|
|
|
}
|
|
|
-#endif
|
|
|
|
|
|
+static inline QDF_STATUS
|
|
|
+wlan_twt_cfg_get_support_requestor(struct wlan_objmgr_psoc *psoc,
|
|
|
+ bool *val)
|
|
|
+{
|
|
|
+ return QDF_STATUS_SUCCESS;
|
|
|
+}
|
|
|
+#endif
|
|
|
#endif
|