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
This commit is contained in:
Yu Ouyang
2023-10-11 15:54:17 +08:00
committed by Ravindra Konda
orang tua cdc026c6e7
melakukan 04fb2cea19

Melihat File

@@ -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