From: Johannes Berg Date: Fri, 25 Oct 2013 10:46:44 +0000 (+0200) Subject: cfg80211: add missing break in cfg80211_get_chan_state() X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=0f0094b3c7b8fef51f1ea6a0abc08b99d1444506;p=linux-beck.git cfg80211: add missing break in cfg80211_get_chan_state() Improve readability of the function by adding the break, there's no functional impact but it's confusing to fall through. Signed-off-by: Johannes Berg --- diff --git a/net/wireless/chan.c b/net/wireless/chan.c index 96c97800e247..3b6daf8b47d9 100644 --- a/net/wireless/chan.c +++ b/net/wireless/chan.c @@ -599,6 +599,7 @@ cfg80211_get_chan_state(struct wireless_dev *wdev, : CHAN_MODE_EXCLUSIVE; return; } + break; case NL80211_IFTYPE_STATION: case NL80211_IFTYPE_P2P_CLIENT: if (wdev->current_bss) {