p2p.h 385 B

1234567891011121314151617
  1. /* SPDX-License-Identifier: ISC */
  2. /*
  3. * Copyright (c) 2015 Qualcomm Atheros, Inc.
  4. */
  5. #ifndef _P2P_H
  6. #define _P2P_H
  7. struct ath10k_vif;
  8. struct wmi_p2p_noa_info;
  9. void ath10k_p2p_noa_update(struct ath10k_vif *arvif,
  10. const struct wmi_p2p_noa_info *noa);
  11. void ath10k_p2p_noa_update_by_vdev_id(struct ath10k *ar, u32 vdev_id,
  12. const struct wmi_p2p_noa_info *noa);
  13. #endif