From 326965ada9efc84198a144bb05630bc3453dcd8a Mon Sep 17 00:00:00 2001 From: Carlos Garces Date: Sat, 31 Oct 2020 18:39:03 +0100 Subject: [PATCH] Fix fallthrough errors --- hal/hal_intf.c | 1 + os_dep/linux/ioctl_cfg80211.c | 2 ++ 2 files changed, 3 insertions(+) diff --git a/hal/hal_intf.c b/hal/hal_intf.c index 619d315..02d806e 100644 --- a/hal/hal_intf.c +++ b/hal/hal_intf.c @@ -1077,6 +1077,7 @@ s32 c2h_handler(_adapter *adapter, u8 id, u8 seq, u8 plen, u8 *payload) case C2H_EXTEND: sub_id = payload[0]; /* no handle, goto default */ + /* fallthrough */ default: if (phydm_c2H_content_parsing(adapter_to_phydm(adapter), id, plen, payload) != TRUE) diff --git a/os_dep/linux/ioctl_cfg80211.c b/os_dep/linux/ioctl_cfg80211.c index 0e10e2f..5fcd1ca 100644 --- a/os_dep/linux/ioctl_cfg80211.c +++ b/os_dep/linux/ioctl_cfg80211.c @@ -2398,6 +2398,7 @@ static int cfg80211_rtw_change_iface(struct wiphy *wiphy, case NL80211_IFTYPE_P2P_CLIENT: is_p2p = _TRUE; #endif + /* fallthrough */ case NL80211_IFTYPE_STATION: networkType = Ndis802_11Infrastructure; @@ -2422,6 +2423,7 @@ static int cfg80211_rtw_change_iface(struct wiphy *wiphy, case NL80211_IFTYPE_P2P_GO: is_p2p = _TRUE; #endif + /* fallthrough */ case NL80211_IFTYPE_AP: networkType = Ndis802_11APMode;