From cdfde22d94c4bb103e268ecf8fc1f2fb762071be Mon Sep 17 00:00:00 2001 From: Dhanashri Atre Date: Thu, 13 Apr 2017 22:41:19 -0700 Subject: [PATCH] qcacmn: Disable per pdev rx ring on MCL Ensure that the per pdev rx ring configuration is disabled on MCL Change-Id: Ie23bb371f9475cf4008dce098dc9c7d712078fe4 CRs-Fixed: 2033532 --- wlan_cfg/wlan_cfg.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/wlan_cfg/wlan_cfg.c b/wlan_cfg/wlan_cfg.c index c30b0d9288..038ae2b7d7 100644 --- a/wlan_cfg/wlan_cfg.c +++ b/wlan_cfg/wlan_cfg.c @@ -73,15 +73,16 @@ #define WLAN_CFG_PER_PDEV_TX_RING 1 #define WLAN_CFG_NUM_TCL_DATA_RINGS 3 -#define WLAN_CFG_PER_PDEV_RX_RING 1 #define WLAN_CFG_NUM_REO_DEST_RING 4 #define WLAN_CFG_HTT_PKT_TYPE 2 #define WLAN_CFG_MAX_PEER_ID 32 #ifdef CONFIG_MCL +#define WLAN_CFG_PER_PDEV_RX_RING 0 #define NUM_RXDMA_RINGS_PER_PDEV 2 #else +#define WLAN_CFG_PER_PDEV_RX_RING 1 #define NUM_RXDMA_RINGS_PER_PDEV 1 #endif