aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorPau Espin Pedrol <pespin@sysmocom.de>2020-06-18 18:39:44 +0200
committerPau Espin Pedrol <pespin@sysmocom.de>2020-06-18 19:11:55 +0200
commitcec19e6324b43f141a03fbc72f20534099b20be1 (patch)
tree8e160d1f4d4156e56e1db27e131c81fb3a4f01e7 /src
parent492c7c50aa0724d894f729e6d06e6c24e9b0e8ea (diff)
Fix missing bts_model implementations in stubs.c and bts_model.c
These will be required by compiler/linker after next changes. Change-Id: Icd20d64cf973f4cf4425b46d4102747db53d8990
Diffstat (limited to 'src')
-rw-r--r--src/osmo-bts-omldummy/bts_model.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/osmo-bts-omldummy/bts_model.c b/src/osmo-bts-omldummy/bts_model.c
index c0114015..a9683815 100644
--- a/src/osmo-bts-omldummy/bts_model.c
+++ b/src/osmo-bts-omldummy/bts_model.c
@@ -220,3 +220,8 @@ int bts_model_l1sap_down(struct gsm_bts_trx *trx, struct osmo_phsap_prim *l1sap)
{
return 0;
}
+
+int bts_model_phy_link_open(struct phy_link *plink)
+{
+ return 0;
+}