xref: /wlan-dirver/qca-wifi-host-cmn/target_if/wifi_pos/inc/target_if_wifi_pos_tx_ops.h (revision 901120c066e139c7f8a2c8e4820561fdd83c67ef)
1 /*
2  * Copyright (c) 2017, 2019-2020 The Linux Foundation. All rights reserved.
3  * Copyright (c) 2021-2022 Qualcomm Innovation Center, Inc. All rights reserved.
4  *
5  * Permission to use, copy, modify, and/or distribute this software for
6  * any purpose with or without fee is hereby granted, provided that the
7  * above copyright notice and this permission notice appear in all
8  * copies.
9  *
10  * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
11  * WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
12  * WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
13  * AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
14  * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
15  * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
16  * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
17  * PERFORMANCE OF THIS SOFTWARE.
18  */
19 
20 /**
21  * DOC: target_if_wifi_pos_tx_ops.h
22  * This file declares the functions pertinent to wifi positioning component's
23  * target if layer.
24  */
25 #ifndef _WIFI_POS_TGT_IF_TX_OPS_H_
26 #define _WIFI_POS_TGT_IF_TX_OPS_H_
27 
28 #include "qdf_types.h"
29 #include "qdf_status.h"
30 #include "wlan_cmn.h"
31 #include "target_if_wifi_pos_rx_ops.h"
32 
33 #ifdef WIFI_POS_CONVERGED
34 /**
35  * target_if_wifi_pos_register_tx_ops: function to register with lmac tx ops
36  * @tx_ops: lmac tx ops struct object
37  *
38  * Return: none
39  */
40 void target_if_wifi_pos_register_tx_ops(struct wlan_lmac_if_tx_ops *tx_ops);
41 #endif
42 #endif /* _WIFI_POS_TGT_IF_TX_OPS_H_ */
43