p2p.h 579 B

123456789101112131415161718192021222324
  1. /* SPDX-License-Identifier: BSD-3-Clause-Clear */
  2. /*
  3. * Copyright (c) 2024 Qualcomm Innovation Center, Inc. All rights reserved..
  4. */
  5. #ifndef ATH12K_P2P_H
  6. #define ATH12K_P2P_H
  7. #include "wmi.h"
  8. struct ath12k_wmi_p2p_noa_info;
  9. struct ath12k_p2p_noa_arg {
  10. u32 vdev_id;
  11. struct ath12k *ar;
  12. const struct ath12k_wmi_p2p_noa_info *noa;
  13. };
  14. void ath12k_p2p_noa_update(struct ath12k_link_vif *arvif,
  15. const struct ath12k_wmi_p2p_noa_info *noa);
  16. void ath12k_p2p_noa_update_by_vdev_id(struct ath12k *ar, u32 vdev_id,
  17. const struct ath12k_wmi_p2p_noa_info *noa);
  18. #endif