accel/ivpu: Move recovery work to system_unbound_wq
[drm/drm-misc.git] / drivers / net / wireless / ath / ath12k / p2p.h
blob03ee877e6d6b72dd6d63cca6f0fc8e9ac4e39c5c
1 /* SPDX-License-Identifier: BSD-3-Clause-Clear */
2 /*
3 * Copyright (c) 2024 Qualcomm Innovation Center, Inc. All rights reserved..
4 */
6 #ifndef ATH12K_P2P_H
7 #define ATH12K_P2P_H
9 #include "wmi.h"
11 struct ath12k_wmi_p2p_noa_info;
13 struct ath12k_p2p_noa_arg {
14 u32 vdev_id;
15 struct ath12k *ar;
16 const struct ath12k_wmi_p2p_noa_info *noa;
19 void ath12k_p2p_noa_update(struct ath12k_link_vif *arvif,
20 const struct ath12k_wmi_p2p_noa_info *noa);
21 void ath12k_p2p_noa_update_by_vdev_id(struct ath12k *ar, u32 vdev_id,
22 const struct ath12k_wmi_p2p_noa_info *noa);
24 #endif