Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 680682d4 authored by Colin Ian King's avatar Colin Ian King Committed by Johannes Berg
Browse files

cfg80211: fix missing break in NL8211_CHAN_WIDTH_80P80 case



The switch on chandef->width is missing a break on the
NL8211_CHAN_WIDTH_80P80 case; currently we get a WARN_ON when
center_freq2 is non-zero because of the missing break.

Signed-off-by: default avatarColin Ian King <colin.king@canonical.com>
Signed-off-by: default avatarJohannes Berg <johannes.berg@intel.com>
parent ecd5a323
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -513,6 +513,7 @@ static bool cfg80211_chandef_dfs_available(struct wiphy *wiphy,
		r = cfg80211_get_chans_dfs_available(wiphy,
						     chandef->center_freq2,
						     width);
		break;
	default:
		WARN_ON(chandef->center_freq2);
		break;