cdp_txrx_handle.h 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. /*
  2. * Copyright (c) 2017-2019 The Linux Foundation. All rights reserved.
  3. *
  4. * Permission to use, copy, modify, and/or distribute this software for
  5. * any purpose with or without fee is hereby granted, provided that the
  6. * above copyright notice and this permission notice appear in all
  7. * copies.
  8. *
  9. * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
  10. * WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
  11. * WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
  12. * AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
  13. * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
  14. * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
  15. * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
  16. * PERFORMANCE OF THIS SOFTWARE.
  17. */
  18. /**
  19. * @file cdp_txrx_handle.h
  20. * @brief Holds the forward structure declarations for handles
  21. * passed from the upper layers
  22. */
  23. #ifndef CDP_TXRX_HANDLE_H
  24. #define CDP_TXRX_HANDLE_H
  25. struct cdp_cfg;
  26. struct cdp_pdev;
  27. struct cdp_vdev;
  28. struct cdp_peer;
  29. struct cdp_raw_ast;
  30. struct cdp_soc;
  31. /**
  32. * cdp_ctrl_objmgr_psoc - opaque handle for UMAC psoc object
  33. */
  34. struct cdp_ctrl_objmgr_psoc;
  35. /**
  36. * cdp_ctrl_objmgr_pdev - opaque handle for UMAC pdev object
  37. */
  38. struct cdp_ctrl_objmgr_pdev;
  39. /**
  40. * cdp_ctrl_objmgr_vdev - opaque handle for UMAC vdev object
  41. */
  42. struct cdp_ctrl_objmgr_vdev;
  43. /**
  44. * cdp_ctrl_objmgr_peer - opaque handle for UMAC peer object
  45. */
  46. struct cdp_ctrl_objmgr_peer;
  47. #endif