aboutsummaryrefslogtreecommitdiffstats
path: root/src/osmo-bts-trx
diff options
context:
space:
mode:
authorAndreas Eversberg <jolly@eversberg.eu>2013-08-23 21:58:29 +0200
committerHarald Welte <laforge@gnumonks.org>2015-09-22 16:41:30 +0200
commitb2482a8574a3a7ce4e628237f411ea0a4cd25f1b (patch)
treefe67e53937549da09f87a5a302ed83484c78b56d /src/osmo-bts-trx
parent812fdd92c70679f4d5a46f9078a74e2a94cd74e4 (diff)
Allow TRX 0..254 at VTY, even if less TRX are available
Instead of limiting the number of TRX at VTY to the actual number of supported TRX, VTY allows to configure any possible number of TRX. If a TRX is configured, which is not supported by BTS model, an error message is returned, which states that the given TRX is not supported.
Diffstat (limited to 'src/osmo-bts-trx')
-rw-r--r--src/osmo-bts-trx/main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/osmo-bts-trx/main.c b/src/osmo-bts-trx/main.c
index 6ddc27e9..c4a4c601 100644
--- a/src/osmo-bts-trx/main.c
+++ b/src/osmo-bts-trx/main.c
@@ -310,7 +310,7 @@ int main(int argc, char **argv)
vty_init(&bts_vty_info);
e1inp_vty_init();
- bts_vty_init(bts, trx_num, &bts_log_info);
+ bts_vty_init(bts, &bts_log_info);
if (bts_init(bts) < 0) {
fprintf(stderr, "unable to to open bts\n");