1 /* SPDX-License-Identifier: BSD-3-Clause-Clear */ 2 /* 3 * Copyright (c) 2024-2025 Qualcomm Innovation Center, Inc. All rights reserved. 4 */ 5 6 #ifndef _ATH12K_DEBUGFS_STA_H_ 7 #define _ATH12K_DEBUGFS_STA_H_ 8 9 #include <net/mac80211.h> 10 11 #include "core.h" 12 13 #define ATH12K_STA_RX_STATS_BUF_SIZE (1024 * 16) 14 15 #ifdef CONFIG_ATH12K_DEBUGFS 16 17 void ath12k_debugfs_link_sta_op_add(struct ieee80211_hw *hw, 18 struct ieee80211_vif *vif, 19 struct ieee80211_link_sta *link_sta, 20 struct dentry *dir); 21 22 #endif /* CONFIG_ATH12K_DEBUGFS */ 23 24 #endif /* _ATH12K_DEBUGFS_STA_H_ */ 25