diff options
Diffstat (limited to 'net/mac80211/rc80211_pid_algo.c')
-rw-r--r-- | net/mac80211/rc80211_pid_algo.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/mac80211/rc80211_pid_algo.c b/net/mac80211/rc80211_pid_algo.c index 01d59a8e334c..8bef9a1262ff 100644 --- a/net/mac80211/rc80211_pid_algo.c +++ b/net/mac80211/rc80211_pid_algo.c | |||
@@ -378,7 +378,7 @@ static void *rate_control_pid_alloc(struct ieee80211_hw *hw, | |||
378 | 378 | ||
379 | for (i = 0; i < IEEE80211_NUM_BANDS; i++) { | 379 | for (i = 0; i < IEEE80211_NUM_BANDS; i++) { |
380 | sband = hw->wiphy->bands[i]; | 380 | sband = hw->wiphy->bands[i]; |
381 | if (sband->n_bitrates > max_rates) | 381 | if (sband && sband->n_bitrates > max_rates) |
382 | max_rates = sband->n_bitrates; | 382 | max_rates = sband->n_bitrates; |
383 | } | 383 | } |
384 | 384 | ||