vht.c 974 B

12345678910111213141516171819202122232425262728293031323334353637
  1. /*
  2. * VHT handling
  3. *
  4. * This program is free software; you can redistribute it and/or modify
  5. * it under the terms of the GNU General Public License version 2 as
  6. * published by the Free Software Foundation.
  7. */
  8. #include <linux/ieee80211.h>
  9. #include <linux/export.h>
  10. #include <net/mac80211.h>
  11. #include "ieee80211_i.h"
  12. void ieee80211_vht_cap_ie_to_sta_vht_cap(struct ieee80211_sub_if_data *sdata,
  13. struct ieee80211_supported_band *sband,
  14. struct ieee80211_vht_cap *vht_cap_ie,
  15. struct sta_info *sta)
  16. {
  17. struct ieee80211_sta_vht_cap *vht_cap = &sta->sta.vht_cap;
  18. memset(vht_cap, 0, sizeof(*vht_cap));
  19. if (!sta->sta.ht_cap.ht_supported)
  20. return;
  21. if (!vht_cap_ie || !sband->vht_cap.vht_supported)
  22. return;
  23. vht_cap->vht_supported = true;
  24. vht_cap->cap = le32_to_cpu(vht_cap_ie->vht_cap_info);
  25. /* Copy peer MCS info, the driver might need them. */
  26. memcpy(&vht_cap->vht_mcs, &vht_cap_ie->supp_mcs,
  27. sizeof(struct ieee80211_vht_mcs_info));
  28. }