|
@@ -1,5 +1,5 @@
|
|
|
/*
|
|
|
- * Copyright (c) 2017-2020 The Linux Foundation. All rights reserved.
|
|
|
+ * Copyright (c) 2017-2021 The Linux Foundation. All rights reserved.
|
|
|
*
|
|
|
* Permission to use, copy, modify, and/or distribute this software for
|
|
|
* any purpose with or without fee is hereby granted, provided that the
|
|
@@ -207,6 +207,14 @@ bool wlan_nan_get_sap_conc_support(struct wlan_objmgr_psoc *psoc);
|
|
|
* Return: Cleanup NAN state upon NAN disable
|
|
|
*/
|
|
|
QDF_STATUS nan_disable_cleanup(struct wlan_objmgr_psoc *psoc);
|
|
|
+
|
|
|
+/**
|
|
|
+ * wlan_nan_is_beamforming_supported- Get support for beamforing
|
|
|
+ * @psoc: pointer to psoc object
|
|
|
+ *
|
|
|
+ * Return: True if beamforming is supported, false if not.
|
|
|
+ */
|
|
|
+bool wlan_nan_is_beamforming_supported(struct wlan_objmgr_psoc *psoc);
|
|
|
#else /* WLAN_FEATURE_NAN */
|
|
|
static inline QDF_STATUS nan_init(void)
|
|
|
{
|
|
@@ -252,5 +260,11 @@ QDF_STATUS nan_disable_cleanup(struct wlan_objmgr_psoc *psoc)
|
|
|
{
|
|
|
return QDF_STATUS_E_FAILURE;
|
|
|
}
|
|
|
+
|
|
|
+static inline
|
|
|
+bool wlan_nan_is_beamforming_supported(struct wlan_objmgr_psoc *psoc)
|
|
|
+{
|
|
|
+ return false;
|
|
|
+}
|
|
|
#endif /* WLAN_FEATURE_NAN */
|
|
|
#endif /* _WLAN_NAN_API_H_ */
|