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 <zhipeng.wang_1@nxp.com>
This commit is contained in:
Zhipeng Wang 2023-01-11 13:26:48 +00:00
parent b4a6d35c78
commit 1d96ff12f2

View file

@ -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;
}