This fixes a warning about NUM_IEEE80211_MODES missing in a switch statement. Intentionally do not add a default case so we get warnings at these places if we need to add new modes. Signed-off-by: Johannes Berg <johannes@xxxxxxxxxxxxxxxx> --- net/mac80211/util.c | 6 ++++++ 1 file changed, 6 insertions(+) --- wireless-dev.orig/net/mac80211/util.c 2007-09-06 01:34:56.144453431 +0200 +++ wireless-dev/net/mac80211/util.c 2007-09-06 01:35:20.344453431 +0200 @@ -97,6 +97,9 @@ void ieee80211_prepare_rates(struct ieee rate->rate == 55 || rate->rate == 110) rate->flags |= IEEE80211_RATE_BASIC; break; + case NUM_IEEE80211_MODES: + /* not useful */ + break; } /* Set ERP and MANDATORY flags based on phymode */ @@ -117,6 +120,9 @@ void ieee80211_prepare_rates(struct ieee rate->rate == 240) rate->flags |= IEEE80211_RATE_MANDATORY; break; + case NUM_IEEE80211_MODES: + /* not useful */ + break; } if (ieee80211_is_erp_rate(mode->mode, rate->rate)) rate->flags |= IEEE80211_RATE_ERP; -- - 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