> +static inline int > +ieee80211_hw_get_divisor(struct ieee80211_hw *hw) > +{ > + switch (hw->conf.chandef.width) { > + case NL80211_CHAN_WIDTH_5: > + return 4; > + case NL80211_CHAN_WIDTH_10: > + return 2; > + default: > + return 1; > + } > +} Using this function will break with drivers that use channel contexts, you really shouldn't do that. Also, you're disabling HT so why bother changing minstrel_ht? 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