diff options
Diffstat (limited to 'net/mac80211/rc80211_minstrel.c')
| -rw-r--r-- | net/mac80211/rc80211_minstrel.c | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/net/mac80211/rc80211_minstrel.c b/net/mac80211/rc80211_minstrel.c index 3824990d340..d9233ec5061 100644 --- a/net/mac80211/rc80211_minstrel.c +++ b/net/mac80211/rc80211_minstrel.c @@ -476,8 +476,8 @@ minstrel_alloc_sta(void *priv, struct ieee80211_sta *sta, gfp_t gfp)  		return NULL;  	for (i = 0; i < IEEE80211_NUM_BANDS; i++) { -		sband = hw->wiphy->bands[hw->conf.channel->band]; -		if (sband->n_bitrates > max_rates) +		sband = hw->wiphy->bands[i]; +		if (sband && sband->n_bitrates > max_rates)  			max_rates = sband->n_bitrates;  	}  |