diff options
author | Miaohe Lin <linmiaohe@huawei.com> | 2020-08-22 11:23:23 +0300 |
---|---|---|
committer | Johannes Berg <johannes.berg@intel.com> | 2020-08-27 12:24:28 +0300 |
commit | 7b506ff6f6903518af65fc35ae2fcd8305d8ff2b (patch) | |
tree | b90a03029fed8c5ff12f6c1f7537fc8624b668cb /net/wireless/scan.c | |
parent | eee79f8094e703e30ed117a373b4a4edb885af3a (diff) | |
download | linux-7b506ff6f6903518af65fc35ae2fcd8305d8ff2b.tar.xz |
net: wireless: Convert to use the preferred fallthrough macro
Convert the uses of fallthrough comments to fallthrough macro.
Signed-off-by: Miaohe Lin <linmiaohe@huawei.com>
Link: https://lore.kernel.org/r/20200822082323.45495-1-linmiaohe@huawei.com
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Diffstat (limited to 'net/wireless/scan.c')
-rw-r--r-- | net/wireless/scan.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/wireless/scan.c b/net/wireless/scan.c index 5e25d29743f0..84fc8ab16dd2 100644 --- a/net/wireless/scan.c +++ b/net/wireless/scan.c @@ -1433,7 +1433,7 @@ cfg80211_inform_single_bss_data(struct wiphy *wiphy, switch (ftype) { case CFG80211_BSS_FTYPE_BEACON: ies->from_beacon = true; - /* fall through */ + fallthrough; case CFG80211_BSS_FTYPE_UNKNOWN: rcu_assign_pointer(tmp.pub.beacon_ies, ies); break; |