Explorar el Código

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
Dhanashri Atre hace 8 años
padre
commit
cdfde22d94
Se han modificado 1 ficheros con 2 adiciones y 1 borrados
  1. 2 1
      wlan_cfg/wlan_cfg.c

+ 2 - 1
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