treewide: remove redundant IS_ERR() before error code check
[linux/fpc-iii.git] / drivers / net / wireless / ath / ath11k / peer.h
blob9a40d1f6ccd9f655639424f8fdc6b8931dfb6946
1 /* SPDX-License-Identifier: BSD-3-Clause-Clear */
2 /*
3 * Copyright (c) 2018-2019 The Linux Foundation. All rights reserved.
4 */
6 #ifndef ATH11K_PEER_H
7 #define ATH11K_PEER_H
9 struct ath11k_peer {
10 struct list_head list;
11 struct ieee80211_sta *sta;
12 int vdev_id;
13 u8 addr[ETH_ALEN];
14 int peer_id;
15 u16 ast_hash;
17 /* protected by ab->data_lock */
18 struct ieee80211_key_conf *keys[WMI_MAX_KEY_INDEX + 1];
19 struct dp_rx_tid rx_tid[IEEE80211_NUM_TIDS + 1];
22 void ath11k_peer_unmap_event(struct ath11k_base *ab, u16 peer_id);
23 void ath11k_peer_map_event(struct ath11k_base *ab, u8 vdev_id, u16 peer_id,
24 u8 *mac_addr, u16 ast_hash);
25 struct ath11k_peer *ath11k_peer_find(struct ath11k_base *ab, int vdev_id,
26 const u8 *addr);
27 struct ath11k_peer *ath11k_peer_find_by_addr(struct ath11k_base *ab,
28 const u8 *addr);
29 struct ath11k_peer *ath11k_peer_find_by_id(struct ath11k_base *ab, int peer_id);
30 void ath11k_peer_cleanup(struct ath11k *ar, u32 vdev_id);
31 int ath11k_peer_delete(struct ath11k *ar, u32 vdev_id, u8 *addr);
32 int ath11k_peer_create(struct ath11k *ar, struct ath11k_vif *arvif,
33 struct ieee80211_sta *sta, struct peer_create_params *param);
35 #endif /* _PEER_H_ */