Re: [PATCH] cfg80211: fix missing break in NL8211_CHAN_WIDTH_80P80 case

2016-08-02 Thread Johannes Berg
On Sun, 2016-07-17 at 19:55 +0100, Colin King wrote: > From: Colin Ian King > > 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. > Applied, thanks. johannes

[PATCH] cfg80211: fix missing break in NL8211_CHAN_WIDTH_80P80 case

2016-07-17 Thread Colin King
From: Colin Ian King 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: Colin Ian King --- net/wireless/chan.c | 1 + 1 file changed, 1 insertion(+) diff --g