aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorVadim Yanitskiy <vyanitskiy@sysmocom.de>2021-10-22 02:28:31 +0300
committerVadim Yanitskiy <vyanitskiy@sysmocom.de>2021-10-22 02:53:00 +0300
commitde8e202d8304ba9013987336ccf0131f7f65ef15 (patch)
tree51ad19821dc5930cf21cb5b3b1284e73209c9692 /include
parente0154aa09bbcab1a03a368dede544d7c93fe68df (diff)
struct gsm_lchan: move tch.rep_facch to rep_acch.dl_facch
Finally we have all ACCH repetition state variables in one place. Change-Id: I1469619528bb69c78c2fdc25bc1db208ead936d0 Related: SYS#5114
Diffstat (limited to 'include')
-rw-r--r--include/osmo-bts/lchan.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/include/osmo-bts/lchan.h b/include/osmo-bts/lchan.h
index 3eb4f935..a7e90043 100644
--- a/include/osmo-bts/lchan.h
+++ b/include/osmo-bts/lchan.h
@@ -254,9 +254,6 @@ struct gsm_lchan {
uint8_t last_cmr;
uint32_t last_fn;
- /* SLOT #0 and #1 to store FACCH for repetition */
- struct gsm_rep_facch rep_facch[2];
-
} tch;
/* 3GPP TS 48.058 ยง 9.3.37: [0; 255] ok, -1 means invalid*/
@@ -311,7 +308,8 @@ struct gsm_lchan {
bool ul_sacch_active;
bool dl_sacch_active;
- /* Message buffer to store DL-SACCH repeation candidate */
+ /* Message buffers to store repeation candidates */
+ struct gsm_rep_facch dl_facch[2];
struct msgb *dl_sacch_msg;
} rep_acch;