aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorMinh-Quang Nguyen <minh-quang.nguyen@nutaq.com>2016-09-06 10:27:11 -0400
committerMinh-Quang Nguyen <minh-quang.nguyen@nutaq.com>2016-09-06 10:27:11 -0400
commit16ddc90eabad423d247753f7d89639659e049d35 (patch)
treeb68b351ba0bea6657ddbcab3dd0814473db732af /src
parent7c7a86c080edd9c92778c941bbe484f59a81f93c (diff)
LC15: Change TRX numbering for the latest Litecell15 hardware
Diffstat (limited to 'src')
-rw-r--r--src/osmo-bts-litecell15/lc15_l1_if.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/osmo-bts-litecell15/lc15_l1_if.c b/src/osmo-bts-litecell15/lc15_l1_if.c
index fe9dff1c..a6358ba5 100644
--- a/src/osmo-bts-litecell15/lc15_l1_if.c
+++ b/src/osmo-bts-litecell15/lc15_l1_if.c
@@ -364,8 +364,8 @@ void *l1if_open_pdch(uint8_t trx_no, uint32_t hlayer1)
fl1h->hLayer1 = hlayer1;
fl1h->trx_no = trx_no;
- /* hardware queues are numbered starting from 1 */
- fl1h->hw_info.trx_nr = trx_no + 1;
+ /* hardware queues are numbered starting from 0 */
+ fl1h->hw_info.trx_nr = trx_no;
DEBUGP(DL1IF, "PCU: Using TRX HW#%u\n", fl1h->hw_info.trx_nr);