MA-20998-2 mxm_wifiex: Fix unannotated fall-through between switch labels build error

Fix below build error:

mxm_wifiex/wlan_src/mlan/mlan_sta_cmd.c:3584:2: error: unannotated fall-through between switch labels [-Werror,-Wimplicit-fallthrough]
        default:
        ^

Change-Id: I0ea57a2207c09e5b09c206bba4d3c0a97f9f629a
Signed-off-by: Zhipeng Wang <zhipeng.wang_1@nxp.com>
This commit is contained in:
Zhipeng Wang 2023-01-11 09:54:50 +00:00
parent 002406b866
commit cbd4075ca1

View file

@ -3636,6 +3636,7 @@ static mlan_status wlan_cmd_csi(pmlan_private pmpriv, HostCmd_DS_COMMAND *cmd,
case CSI_CMD_DISABLE:
DBG_HEXDUMP(MCMD_D, "Disable CSI", csi_cfg_cmd,
sizeof(HostCmd_DS_CSI_CFG));
fallthrough;
default:
break;
}