aboutsummaryrefslogtreecommitdiffstats
path: root/src/osmo-bts-sysmo
diff options
context:
space:
mode:
authorHarald Welte <laforge@gnumonks.org>2012-07-22 22:47:06 +0200
committerHarald Welte <laforge@gnumonks.org>2012-07-22 22:47:06 +0200
commit7c2427c020949c778f4a59443c16fae7b9e2d98e (patch)
tree57add08b8390386e49009eb5ff6604a99155ccb8 /src/osmo-bts-sysmo
parent678321d013c320c31a1820135f32cee63d0c0ae7 (diff)
l1_if: indicate against which api header files we were compiled
Diffstat (limited to 'src/osmo-bts-sysmo')
-rw-r--r--src/osmo-bts-sysmo/l1_if.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/osmo-bts-sysmo/l1_if.c b/src/osmo-bts-sysmo/l1_if.c
index 69c44246..c4f21d48 100644
--- a/src/osmo-bts-sysmo/l1_if.c
+++ b/src/osmo-bts-sysmo/l1_if.c
@@ -1134,6 +1134,10 @@ struct femtol1_hdl *l1if_open(void *priv)
struct femtol1_hdl *fl1h;
int rc;
+ LOGP(DL1C, LOGL_INFO, "sysmoBTS L1IF compiled against API headers "
+ "v%u.%u.%u\n", SUPERFEMTO_API_VERSION >> 16,
+ SUPERFEMTO_API_VERSION >> 8, SUPERFEMTO_API_VERSION);
+
fl1h = talloc_zero(priv, struct femtol1_hdl);
if (!fl1h)
return NULL;