aboutsummaryrefslogtreecommitdiffstats
path: root/src/osmo-bts-virtual/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/osmo-bts-virtual/main.c')
-rw-r--r--src/osmo-bts-virtual/main.c27
1 files changed, 22 insertions, 5 deletions
diff --git a/src/osmo-bts-virtual/main.c b/src/osmo-bts-virtual/main.c
index a27ee453..d4900d61 100644
--- a/src/osmo-bts-virtual/main.c
+++ b/src/osmo-bts-virtual/main.c
@@ -76,12 +76,10 @@ int bts_model_handle_options(int argc, char **argv)
while (1) {
int option_idx = 0, c;
static const struct option long_options[] = {
- /* specific to this hardware */
- { 0, 0, 0, 0 }
- };
+ /* specific to this hardware */
+ {0, 0, 0, 0}};
- c = getopt_long(argc, argv, "",
- long_options, &option_idx);
+ c = getopt_long(argc, argv, "", long_options, &option_idx);
if (c == -1)
break;
@@ -101,6 +99,25 @@ void bts_model_abis_close(struct gsm_bts *bts)
bts_shutdown(bts, "Abis close");
}
+void bts_model_phy_link_set_defaults(struct phy_link *plink)
+{
+}
+
+void bts_model_phy_instance_set_defaults(struct phy_instance *pinst)
+{
+}
+
+int bts_model_ts_disconnect(struct gsm_bts_trx_ts *ts)
+{
+ return -ENOTSUP;
+}
+
+int bts_model_ts_connect(struct gsm_bts_trx_ts *ts,
+ enum gsm_phys_chan_config as_pchan)
+{
+ return -ENOTSUP;
+}
+
int main(int argc, char **argv)
{
return bts_main(argc, argv);