summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVadim Yanitskiy <axilirator@gmail.com>2018-03-11 03:16:40 +0700
committerVadim Yanitskiy <axilirator@gmail.com>2018-03-11 14:59:43 +0700
commitc00985bf99cd38cab7f50855866524a4a60d47dd (patch)
tree9002d7e7b4cc9b3f684715881f5e4d53c1480ed9
parent2778e4ef432c261cbeaeb344137c465adc8393dd (diff)
trxcon/sched_trx.h: clarify lchan flags meaning
-rw-r--r--src/host/trxcon/sched_trx.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/host/trxcon/sched_trx.h b/src/host/trxcon/sched_trx.h
index 856566c4..78f458df 100644
--- a/src/host/trxcon/sched_trx.h
+++ b/src/host/trxcon/sched_trx.h
@@ -17,11 +17,13 @@
#define GPRS_BURST_LEN GSM_BURST_LEN
#define EDGE_BURST_LEN 444
+/* Is a channel related to PDCH (GPRS) */
#define TRX_CH_FLAG_PDCH (1 << 0)
+/* Should a channel be activated automatically */
#define TRX_CH_FLAG_AUTO (1 << 1)
-#define TRX_TS_COUNT 8
#define MAX_A5_KEY_LEN (128 / 8)
+#define TRX_TS_COUNT 8
/* Forward declaration to avoid mutual include */
struct trx_lchan_state;