aboutsummaryrefslogtreecommitdiffstats
path: root/openbsc/src/utils
diff options
context:
space:
mode:
authorHarald Welte <laforge@gnumonks.org>2011-06-05 13:31:33 +0200
committerHarald Welte <laforge@gnumonks.org>2011-06-05 13:31:33 +0200
commit3300c01e8289ef28cf560c3fe87548eeb7051f5b (patch)
tree7c462454fcffd363cf27655d183bcb74e14ba444 /openbsc/src/utils
parent472e7e937c425fafa904bcf6e36c5800157246d3 (diff)
split gsm_data.c in gsm_data_shared.c and gsm_data.c
This facilitates the use of gsm_data.c from osmo-bts
Diffstat (limited to 'openbsc/src/utils')
-rw-r--r--openbsc/src/utils/bs11_config.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/openbsc/src/utils/bs11_config.c b/openbsc/src/utils/bs11_config.c
index aa8c55d3a..41acd6920 100644
--- a/openbsc/src/utils/bs11_config.c
+++ b/openbsc/src/utils/bs11_config.c
@@ -882,8 +882,8 @@ int main(int argc, char **argv)
fprintf(stderr, "Unable to allocate gsm network\n");
exit(1);
}
- g_bts = gsm_bts_alloc(gsmnet, GSM_BTS_TYPE_BS11, HARDCODED_TSC,
- HARDCODED_BSIC);
+ g_bts = gsm_bts_alloc_register(gsmnet, GSM_BTS_TYPE_BS11, HARDCODED_TSC,
+ HARDCODED_BSIC);
rc = rs232_setup(serial_port, delay_ms, g_bts);
if (rc < 0) {