Prechádzať zdrojové kódy

qcacld-3.0: Fix missing break statement in sync profile API

Fix missing break statement in memory profile sync API.

Change-Id: Ibde931156b670367ed591f363c57ba84fdc69c70
CRs-Fixed: 3632739
Karthik Kantamneni 1 rok pred
rodič
commit
4d104a0264
1 zmenil súbory, kde vykonal 2 pridanie a 0 odobranie
  1. 2 0
      components/dp/core/src/wlan_dp_main.c

+ 2 - 0
components/dp/core/src/wlan_dp_main.c

@@ -2651,9 +2651,11 @@ void wlan_dp_soc_cfg_sync_profile(struct cdp_soc_t *cdp_soc)
 				}
 				dp_info("current RXDMA refill ring size:%u synced with profile:%u", cur_val, profile_ctx->size);
 			}
+			break;
 		case DP_RX_REFILL_POOL_NUM_CFG:
 			wlan_dp_rx_refill_pool_cfg_sync_profile(cdp_soc,
 								profile_ctx);
+			break;
 		default:
 			dp_debug("Unknown profile param type:%u", profile_ctx->param_type);
 			break;