qcacmn: Fix compilation error in flow control switch case logic

In flow control code switch logic break statements are not used
intentionally, but compiler is treating this as error.
So to avoid compilation error add fall through comment.

Change-Id: Ic79b75c48554182fba7c4c0f3885e3a44347e2e7
CRs-Fixed: 3090182
This commit is contained in:
Karthik Kantamneni
2021-12-06 15:41:24 +05:30
committed by Madan Koyyalamudi
parent 599a7dca32
commit e79b8799c1
2 changed files with 7 additions and 0 deletions

View File

@@ -251,16 +251,19 @@ dp_tx_adjust_flow_pool_state(struct dp_soc *soc,
soc->pause_cb(pool->flow_pool_id,
WLAN_NETIF_PRIORITY_QUEUE_OFF,
WLAN_DATA_FLOW_CTRL_PRI);
/* fallthrough */
case FLOW_POOL_VO_PAUSED:
soc->pause_cb(pool->flow_pool_id,
WLAN_NETIF_VO_QUEUE_OFF,
WLAN_DATA_FLOW_CTRL_VO);
/* fallthrough */
case FLOW_POOL_VI_PAUSED:
soc->pause_cb(pool->flow_pool_id,
WLAN_NETIF_VI_QUEUE_OFF,
WLAN_DATA_FLOW_CTRL_VI);
/* fallthrough */
case FLOW_POOL_BE_BK_PAUSED:
soc->pause_cb(pool->flow_pool_id,