Merge tag 'trace-printf-v6.13' of git://git.kernel.org/pub/scm/linux/kernel/git/trace...
[drm/drm-misc.git] / drivers / net / wireless / ath / ath11k / p2p.h
blobd907940a9b09676e55bca4952ac5e37ddce4d008
1 /* SPDX-License-Identifier: BSD-3-Clause-Clear */
2 /*
3 * Copyright (c) 2024 Qualcomm Innovation Center, Inc. All rights reserved.
4 */
6 #ifndef ATH11K_P2P_H
7 #define ATH11K_P2P_H
9 #include "wmi.h"
11 struct ath11k_wmi_p2p_noa_info;
13 struct ath11k_p2p_noa_arg {
14 u32 vdev_id;
15 const struct ath11k_wmi_p2p_noa_info *noa;
18 void ath11k_p2p_noa_update(struct ath11k_vif *arvif,
19 const struct ath11k_wmi_p2p_noa_info *noa);
20 void ath11k_p2p_noa_update_by_vdev_id(struct ath11k *ar, u32 vdev_id,
21 const struct ath11k_wmi_p2p_noa_info *noa);
22 #endif