1 /* 2 * Copyright (c) 2022 Qualcomm Innovation Center, Inc. All rights reserved. 3 * 4 * Permission to use, copy, modify, and/or distribute this software for any 5 * purpose with or without fee is hereby granted, provided that the above 6 * copyright notice and this permission notice appear in all copies. 7 * 8 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 9 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 10 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 11 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 12 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 13 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 14 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 15 */ 16 17 /** 18 * DOC: target_if_dp_comp.h 19 */ 20 21 #ifndef _WLAN_DP_COMP_TGT_IF_H_ 22 #define _WLAN_DP_COMP_TGT_IF_H_ 23 24 #include "qdf_types.h" 25 #include "wlan_dp_public_struct.h" 26 #include <qdf_mem.h> 27 #include <qdf_status.h> 28 #include <wmi_unified_api.h> 29 #include <wmi_unified_priv.h> 30 #include <wmi_unified_param.h> 31 #include <wlan_objmgr_psoc_obj.h> 32 #include <target_if.h> 33 34 /** 35 * target_if_dp_register_tx_ops() - registers dp tx ops 36 * @sb_ops: tx ops 37 * 38 * Return: none 39 */ 40 void target_if_dp_register_tx_ops(struct wlan_dp_psoc_sb_ops *sb_ops); 41 42 /** 43 * target_if_dp_register_rx_ops() - registers dp rx ops 44 * @nb_ops: rx ops 45 * 46 * Return: none 47 */ 48 void target_if_dp_register_rx_ops(struct wlan_dp_psoc_nb_ops *nb_ops); 49 50 #endif 51