This fixes a logic oversight in the patch "mac80211: Set low initial rate in rc80211_simple". Signed-off-by: Johannes Berg <johannes@xxxxxxxxxxxxxxxx> --- wireless-dev.orig/net/mac80211/rc80211_simple.c 2007-06-11 08:08:55.301879260 +0200 +++ wireless-dev/net/mac80211/rc80211_simple.c 2007-06-11 08:09:06.791879260 +0200 @@ -289,9 +289,10 @@ static void rate_control_simple_rate_ini * as a workaround, */ for (i = 0; i < mode->num_rates; i++) { if ((sta->supp_rates & BIT(i)) && - (mode->rates[i].flags & IEEE80211_RATE_SUPPORTED)) + (mode->rates[i].flags & IEEE80211_RATE_SUPPORTED)) { sta->txrate = i; break; + } } } - 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