1 /* 2 * Copyright (c) 2018, 2020 The Linux Foundation. All rights reserved. 3 * Copyright (c) 2021 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: Declare various api/struct which shall be used 22 * by ipa component for wmi cmd (tx path) 23 */ 24 25 #ifndef _TARGET_IF_IPA_H_ 26 #define _TARGET_IF_IPA_H_ 27 28 #ifdef IPA_OFFLOAD 29 30 #include "wlan_ipa_public_struct.h" 31 /** 32 * target_if_ipa_register_tx_ops() - Register IPA component TX OPS 33 * @tx_ops: pointer to tx_ops structure 34 * 35 * Return: QDF_STATUS 36 */ 37 QDF_STATUS 38 target_if_ipa_register_tx_ops(struct wlan_lmac_if_tx_ops *tx_ops); 39 #endif /* IPA_OFFLOAD */ 40 #endif /* _TARGET_IF_IPA_H_ */ 41 42