cfg80211.h 1.1 KB

1234567891011121314151617181920212223242526272829303132
  1. /*
  2. * Copyright (c) 2015-2016 Quantenna Communications, Inc.
  3. * All rights reserved.
  4. *
  5. * This program is free software; you can redistribute it and/or
  6. * modify it under the terms of the GNU General Public License
  7. * as published by the Free Software Foundation; either version 2
  8. * of the License, or (at your option) any later version.
  9. *
  10. * This program is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU General Public License for more details.
  14. *
  15. */
  16. #ifndef _QTN_FMAC_CFG80211_H_
  17. #define _QTN_FMAC_CFG80211_H_
  18. #include <net/cfg80211.h>
  19. #include "core.h"
  20. int qtnf_wiphy_register(struct qtnf_hw_info *hw_info, struct qtnf_wmac *mac);
  21. int qtnf_del_virtual_intf(struct wiphy *wiphy, struct wireless_dev *wdev);
  22. void qtnf_cfg80211_vif_reset(struct qtnf_vif *vif);
  23. void qtnf_band_init_rates(struct ieee80211_supported_band *band);
  24. void qtnf_band_setup_htvht_caps(struct qtnf_mac_info *macinfo,
  25. struct ieee80211_supported_band *band);
  26. #endif /* _QTN_FMAC_CFG80211_H_ */