aboutsummaryrefslogtreecommitdiffstats
path: root/src/osmo-bts-trx/trx_vty.c
diff options
context:
space:
mode:
authorHarald Welte <laforge@gnumonks.org>2017-06-24 02:09:43 +0200
committerHarald Welte <laforge@gnumonks.org>2017-06-28 23:43:28 +0000
commit53ce11ab955de487063442d6e83a034f2f5a695b (patch)
tree5a74683637921a66307b9a7b5eb644d6d90567f9 /src/osmo-bts-trx/trx_vty.c
parent59d0c2cca64c9efe199733fc04708cc500f44090 (diff)
TRX: Use timerfd and CLOCK_MONOTONIC for GSM frame timer
using gettimeofday() is not suitable for the GSM frame timer, as it relies on the normal 'wall clock' system time, which may be adjusted by ntp, gps or other means at runtime. Switching to a different clock source means we cannot use osmo_timer_list anymore, but timerfd integrates just fine with our libosmocore select() loop handling. Change-Id: I51b19adde14ebb7ef3bb863d45e06243c323e22e Closes: #2325
Diffstat (limited to 'src/osmo-bts-trx/trx_vty.c')
-rw-r--r--src/osmo-bts-trx/trx_vty.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/osmo-bts-trx/trx_vty.c b/src/osmo-bts-trx/trx_vty.c
index 4f74c441..6d6cded7 100644
--- a/src/osmo-bts-trx/trx_vty.c
+++ b/src/osmo-bts-trx/trx_vty.c
@@ -60,8 +60,7 @@ DEFUN(show_transceiver, show_transceiver_cmd, "show transceiver",
if (!transceiver_available) {
vty_out(vty, "transceiver is not connected%s", VTY_NEWLINE);
} else {
- vty_out(vty, "transceiver is connected, current fn=%u%s",
- transceiver_last_fn, VTY_NEWLINE);
+ vty_out(vty, "transceiver is connected%s", VTY_NEWLINE);
}
llist_for_each_entry(trx, &bts->trx_list, list) {