qcacmn: Fix interrupt batch count initialization

Interrupt batch count configuration "dp_int_batch_threshold_other"
was initialized to wrong values, which was causing missed interrupts
from REO status ring.
Also remove the extra RXDMA2SW ring handling, which is currently
done in both UMAC and LMAC interrupt processing loops.

Change-Id: I9a9e951780356db6b491d1301d2c08ef1ac585d5
diff --git a/wlan_cfg/cfg_dp.h b/wlan_cfg/cfg_dp.h
index 0f91262..eb2f31b 100644
--- a/wlan_cfg/cfg_dp.h
+++ b/wlan_cfg/cfg_dp.h
@@ -292,9 +292,9 @@
 
 #define CFG_DP_INT_BATCH_THRESHOLD_OTHER \
 		CFG_INI_UINT("dp_int_batch_threshold_other", \
-		WLAN_CFG_INT_TIMER_THRESHOLD_OTHER_MIN, \
-		WLAN_CFG_INT_TIMER_THRESHOLD_OTHER_MAX, \
-		WLAN_CFG_INT_TIMER_THRESHOLD_OTHER, \
+		WLAN_CFG_INT_BATCH_THRESHOLD_OTHER_MIN, \
+		WLAN_CFG_INT_BATCH_THRESHOLD_OTHER_MAX, \
+		WLAN_CFG_INT_BATCH_THRESHOLD_OTHER, \
 		CFG_VALUE_OR_DEFAULT, "DP INT threshold Other")
 
 #define CFG_DP_INT_BATCH_THRESHOLD_RX \