> +void ieee80211_vht_cap_ie_to_sta_vht_cap(struct ieee80211_sub_if_data *sdata, > + struct ieee80211_supported_band *sband, > + struct ieee80211_vht_cap *vht_cap_ie, > + struct ieee80211_sta_vht_cap *vht_cap) > +{ > + if (WARN_ON_ONCE(!vht_cap)) > + return; > + > + memset(vht_cap, 0, sizeof(*vht_cap)); > + > + if (!vht_cap_ie || !sband->vht_cap.vht_supported) > + return; > + > + vht_cap->vht_supported = true; > + > + vht_cap->cap = le16_to_cpu(vht_cap_ie->vht_cap_info); This doesn't compile?? johannes -- To unsubscribe from this list: send the line "unsubscribe linux-wireless" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html