瀏覽代碼

qcacld-3.0: Fix compile issue

If WLAN_SUPPORT_TWT or WLAN_TWT_CONV_SUPPORTED not defined, FEATURE_SET
is defined, function wlan_twt_get_feature_info() will be called by
wma_set_feature_set_info(). However wlan_twt_get_feature_info() is not
declaration.

Change-Id: I31b1e5c6520adf4dc495356d45fc89f481c9962e
CRs-Fixed: 3637229
Yu Ouyang 1 年之前
父節點
當前提交
04fb2cea19
共有 1 個文件被更改,包括 7 次插入0 次删除
  1. 7 0
      components/umac/twt/dispatcher/inc/wlan_twt_cfg_ext_api.h

+ 7 - 0
components/umac/twt/dispatcher/inc/wlan_twt_cfg_ext_api.h

@@ -182,5 +182,12 @@ wlan_twt_get_bcast_responder_cfg(struct wlan_objmgr_psoc *psoc, bool *val)
 	return QDF_STATUS_SUCCESS;
 }
 
+#ifdef FEATURE_SET
+static inline void
+wlan_twt_get_feature_info(struct wlan_objmgr_psoc *psoc,
+			  struct wlan_twt_features *twt_feature_set)
+{
+}
+#endif
 #endif
 #endif