summaryrefslogtreecommitdiffstats
path: root/net/wireless/scan.c
diff options
context:
space:
mode:
authorLuca Coelho2018-12-15 10:03:21 +0100
committerJohannes Berg2018-12-18 13:15:08 +0100
commit925b5978cdc7287ba08ed21bf27970131f147720 (patch)
tree3db512a135aaed08bf8e4c5555a06f47b2e4b889 /net/wireless/scan.c
parentcfg80211: clarify LCI/civic location documentation (diff)
downloadkernel-qcow2-linux-925b5978cdc7287ba08ed21bf27970131f147720.tar.gz
kernel-qcow2-linux-925b5978cdc7287ba08ed21bf27970131f147720.tar.xz
kernel-qcow2-linux-925b5978cdc7287ba08ed21bf27970131f147720.zip
cfg80211: add some missing fall through annotations
There are talks about enabling -Wimplicit-fallthrough warnings in the mainline and it is already enabled in linux-next. Add all the missing annotations to prevent warnings when this happens. And in one case, remove the extra text from the annotation so that the compiler recognizes it. Signed-off-by: Luca Coelho <luciano.coelho@intel.com> Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Diffstat (limited to 'net/wireless/scan.c')
-rw-r--r--net/wireless/scan.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/wireless/scan.c b/net/wireless/scan.c
index d0e7472dd9fd..5123667f4569 100644
--- a/net/wireless/scan.c
+++ b/net/wireless/scan.c
@@ -1183,7 +1183,7 @@ cfg80211_inform_bss_data(struct wiphy *wiphy,
switch (ftype) {
case CFG80211_BSS_FTYPE_BEACON:
ies->from_beacon = true;
- /* fall through to assign */
+ /* fall through */
case CFG80211_BSS_FTYPE_UNKNOWN:
rcu_assign_pointer(tmp.pub.beacon_ies, ies);
break;