aboutsummaryrefslogtreecommitdiffstats
path: root/src/osmo-bts-trx/trx_if.c
diff options
context:
space:
mode:
authorHarald Welte <laforge@gnumonks.org>2016-01-09 18:19:32 +0100
committerHarald Welte <laforge@gnumonks.org>2016-01-16 17:48:57 +0100
commit773ab8b2c52d0145561e113e8af7bb839bbe4749 (patch)
treed01b86db50d45fbadc749d6617ad63bcdd923b5e /src/osmo-bts-trx/trx_if.c
parent69ace680dd6edf424389ed1b092faac6a81d900e (diff)
TRX: replace some more 2715648 magic numbers with GSM_HYPERFRAME
Diffstat (limited to 'src/osmo-bts-trx/trx_if.c')
-rw-r--r--src/osmo-bts-trx/trx_if.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/osmo-bts-trx/trx_if.c b/src/osmo-bts-trx/trx_if.c
index 69ad8415..419fea64 100644
--- a/src/osmo-bts-trx/trx_if.c
+++ b/src/osmo-bts-trx/trx_if.c
@@ -139,8 +139,8 @@ static int trx_clk_read_cb(struct osmo_fd *ofd, unsigned int what)
sscanf(buf, "IND CLOCK %u", &fn);
LOGP(DTRX, LOGL_INFO, "Clock indication: fn=%u\n", fn);
- if (fn >= 2715648) {
- fn %= 2715648;
+ if (fn >= GSM_HYPERFRAME) {
+ fn %= GSM_HYPERFRAME;
LOGP(DTRX, LOGL_ERROR, "Indicated clock's FN is not wrapping "
"correctly, correcting to fn=%u\n", fn);
}
@@ -437,7 +437,7 @@ static int trx_data_read_cb(struct osmo_fd *ofd, unsigned int what)
LOGP(DTRX, LOGL_ERROR, "Illegal TS %d\n", tn);
return -EINVAL;
}
- if (fn >= 2715648) {
+ if (fn >= GSM_HYPERFRAME) {
LOGP(DTRX, LOGL_ERROR, "Illegal FN %u\n", fn);
return -EINVAL;
}