From 1d96ff12f2e171ce24dacea32ef4b4b077501eee Mon Sep 17 00:00:00 2001 From: Zhipeng Wang Date: Wed, 11 Jan 2023 13:26:48 +0000 Subject: [PATCH] MA-20998-9 mxm_wifiex: Fix unannotated fall-through between switch labels build error Fix below build error: mxm_wifiex/wlan_src/mlinux/moal_ioctl.c:4341:2: error: unannotated fall-through between switch labels [-Werror,-Wimplicit-fallthrough] default: ^ Change-Id: Ia7be7a9996a5d38aedaa89f9020a76024f3b42d2 Signed-off-by: Zhipeng Wang --- mxm_wifiex/wlan_src/mlinux/moal_ioctl.c | 1 + 1 file changed, 1 insertion(+) diff --git a/mxm_wifiex/wlan_src/mlinux/moal_ioctl.c b/mxm_wifiex/wlan_src/mlinux/moal_ioctl.c index 848bfea..18a154b 100644 --- a/mxm_wifiex/wlan_src/mlinux/moal_ioctl.c +++ b/mxm_wifiex/wlan_src/mlinux/moal_ioctl.c @@ -4552,6 +4552,7 @@ void woal_process_ioctl_resp(moal_private *priv, mlan_ioctl_req *req) #endif case MLAN_IOCTL_MISC_CFG: woal_ioctl_get_misc_conf(priv, (mlan_ds_misc_cfg *)req->pbuf); + fallthrough; default: break; }