target_if_pub.h 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. /*
  2. * Copyright (c) 2016-2019 The Linux Foundation. All rights reserved.
  3. * Copyright (c) 2022-2023 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. * This file contains the structure definitions of target interface
  21. * used for the abstraction across various layers.
  22. */
  23. #ifndef _TARGET_IF_PUB_H_
  24. #define _TARGET_IF_PUB_H_
  25. struct target_pdev_info;
  26. /**
  27. * typedef target_pdev_info_t - Opaque definition of target pdev
  28. * information structure
  29. */
  30. typedef struct target_pdev_info target_pdev_info_t;
  31. struct target_psoc_info;
  32. /**
  33. * typedef target_psoc_info_t - Opaque definition of target psoc
  34. * information structure
  35. */
  36. typedef struct target_psoc_info target_psoc_info_t;
  37. #endif /* _TARGET_IF_PUB_H_ */