qcacld-3.0: Send nan enabled/disabled flag of SRD channels to fw

Check if NAN SRD operation is enabled in the ini
"etsi13_srd_chan_in_master_mode" and send the same to firmware
for all SRD channels.

Change-Id: I2aa8fd34c67b2061963b62a34d29c73740af3a76
CRs-Fixed: 2748455
This commit is contained in:
Srinivas Dasari
2020-08-14 19:27:11 +05:30
committed by snandini
부모 f955b44a6d
커밋 fb7989e27a
5개의 변경된 파일46개의 추가작업 그리고 4개의 파일을 삭제

파일 보기

@@ -463,6 +463,19 @@ bool ucfg_is_nan_vdev(struct wlan_objmgr_vdev *vdev);
* Return: QDF_STATUS
*/
QDF_STATUS ucfg_nan_disable_ind_to_userspace(struct wlan_objmgr_psoc *psoc);
/**
* ucfg_is_nan_allowed_on_freq() - Check if NAN is allowed on given freq
* @pdev: pdev context
* @freq: Frequency to be checked
*
* Check if NAN/NDP can be enabled on given frequency.
* Validate SRD channels based on the ini and reg domain. Assume rest of the
* channels support NAN/NDP for now.
*
* Return: True if NAN is allowed on the given frequency
*/
bool ucfg_is_nan_allowed_on_freq(struct wlan_objmgr_pdev *pdev, uint32_t freq);
#else /* WLAN_FEATURE_NAN */
static inline
@@ -576,5 +589,11 @@ QDF_STATUS ucfg_nan_disable_ind_to_userspace(struct wlan_objmgr_psoc *psoc)
{
return QDF_STATUS_SUCCESS;
}
static inline
bool ucfg_is_nan_allowed_on_freq(struct wlan_objmgr_pdev *pdev, uint32_t freq)
{
return false;
}
#endif /* WLAN_FEATURE_NAN */
#endif /* _NAN_UCFG_API_H_ */