1*4882a593Smuzhiyun /* SPDX-License-Identifier: GPL-2.0+ */ 2*4882a593Smuzhiyun /* Copyright (c) 2015-2016 Quantenna Communications. All rights reserved. */ 3*4882a593Smuzhiyun 4*4882a593Smuzhiyun #ifndef _QTN_FMAC_CFG80211_H_ 5*4882a593Smuzhiyun #define _QTN_FMAC_CFG80211_H_ 6*4882a593Smuzhiyun 7*4882a593Smuzhiyun #include <net/cfg80211.h> 8*4882a593Smuzhiyun 9*4882a593Smuzhiyun #include "core.h" 10*4882a593Smuzhiyun 11*4882a593Smuzhiyun int qtnf_wiphy_register(struct qtnf_hw_info *hw_info, struct qtnf_wmac *mac); 12*4882a593Smuzhiyun int qtnf_del_virtual_intf(struct wiphy *wiphy, struct wireless_dev *wdev); 13*4882a593Smuzhiyun void qtnf_cfg80211_vif_reset(struct qtnf_vif *vif); 14*4882a593Smuzhiyun void qtnf_band_init_rates(struct ieee80211_supported_band *band); 15*4882a593Smuzhiyun void qtnf_band_setup_htvht_caps(struct qtnf_mac_info *macinfo, 16*4882a593Smuzhiyun struct ieee80211_supported_band *band); 17*4882a593Smuzhiyun 18*4882a593Smuzhiyun #endif /* _QTN_FMAC_CFG80211_H_ */ 19