/* * Copyright (c) 2017 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 * above copyright notice and this permission notice appear in all * copies. * * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL * WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE * AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR * PERFORMANCE OF THIS SOFTWARE. */ /** * DOC: contains nan target if declarations */ #ifndef _WLAN_NAN_TGT_IF_H_ #define _WLAN_NAN_TGT_IF_H_ #include "qdf_types.h" #include #include #include #include #include #include #include #include #include struct wlan_objmgr_psoc; struct wlan_lmac_if_rx_ops; struct wlan_lmac_if_tx_ops; struct wlan_lmac_if_nan_rx_ops; /** * target_if_nan_get_tx_ops() - retrieve the nan tx_ops * @psoc: psoc context * * API to retrieve the nan tx_ops from the psoc context * * Return: nan tx_ops pointer */ struct wlan_lmac_if_nan_tx_ops *target_if_nan_get_tx_ops( struct wlan_objmgr_psoc *psoc); /** * target_if_nan_get_rx_ops() - retrieve the nan rx_ops * @psoc: psoc context * * API to retrieve the nan rx_ops from the psoc context * * Return: nan rx_ops pointer */ struct wlan_lmac_if_nan_rx_ops *target_if_nan_get_rx_ops( struct wlan_objmgr_psoc *psoc); /** * target_if_nan_register_tx_ops() - registers nan tx ops * @tx_ops: tx ops * * Return: none */ void target_if_nan_register_tx_ops(struct wlan_lmac_if_tx_ops *tx_ops); /** * target_if_nan_register_rx_ops() - registers nan rx ops * @tx_ops: rx ops * * Return: none */ void target_if_nan_register_rx_ops(struct wlan_lmac_if_rx_ops *rx_ops); /** * target_if_nan_register_events() - registers with NDP events * @psoc: pointer to psoc object * * Return: status of operation */ QDF_STATUS target_if_nan_register_events(struct wlan_objmgr_psoc *psoc); /** * target_if_nan_deregister_events() - registers nan rx ops * @psoc: pointer to psoc object * * Return: status of operation */ QDF_STATUS target_if_nan_deregister_events(struct wlan_objmgr_psoc *psoc); #endif /* _WIFI_POS_TGT_IF_H_ */