qcacmn: Fix Tx ring index selection

For target SDX waikiki, Tx data/completion ring
value should be 3 else it is 2. so, Added a condition
to make a selection based on the target type.

Change-Id: I1fe65894c1c5dfa8f4d3efdd781dbfac0f6e2c04
CRs-Fixed: 3430265
This commit is contained in:
Gaurav Saini
2023-03-12 07:16:50 +05:30
committed by Madan Koyyalamudi
parent 235202f7de
commit c1d7a3b4dc

View File

@@ -18,7 +18,8 @@
#ifndef _DP_IPA_H_
#define _DP_IPA_H_
#if defined(QCA_WIFI_KIWI) || defined(QCA_WIFI_KIWI_V2)
#if defined(QCA_WIFI_KIWI) || defined(QCA_WIFI_KIWI_V2) || \
defined(QCA_WIFI_QCN9224)
/* Index into soc->tcl_data_ring[] */
#define IPA_TCL_DATA_RING_IDX 3
#else