target_if_ipa.h 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  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. * DOC: Declare various api/struct which shall be used
  21. * by ipa component for wmi cmd (tx path)
  22. */
  23. #ifndef _TARGET_IF_IPA_H_
  24. #define _TARGET_IF_IPA_H_
  25. #ifdef IPA_OFFLOAD
  26. #include "wlan_ipa_public_struct.h"
  27. /**
  28. * target_if_ipa_register_tx_ops() - Register IPA component TX OPS
  29. * @tx_ops: pointer to tx_ops structure
  30. *
  31. * Return: QDF_STATUS
  32. */
  33. QDF_STATUS
  34. target_if_ipa_register_tx_ops(struct wlan_lmac_if_tx_ops *tx_ops);
  35. #endif /* IPA_OFFLOAD */
  36. #endif /* _TARGET_IF_IPA_H_ */