Linux Audio

Check our new training course

Embedded Linux training

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