aboutsummaryrefslogtreecommitdiffstats
path: root/src/osmo-bts-sysmo/l1_if.c
diff options
context:
space:
mode:
authorHolger Hans Peter Freyther <zecke@selfish.org>2012-12-19 23:36:06 +0100
committerHolger Hans Peter Freyther <zecke@selfish.org>2013-02-27 11:10:33 +0100
commitb7eb9865df3d66df446ec40e34432f2fbd6546fe (patch)
treed8b5aef83d7dcc4c9ceb21ad675736f9b5ae868d /src/osmo-bts-sysmo/l1_if.c
parentdd2a51ed32959033cf965dfb243dd8fa44574f59 (diff)
calib: Use 2.4.0 as cut-off for the firmware, log errors
In case opening a calibration file is failing an error will will be logged, the caller and implementation were inconsistent about the API version that is supported for the calibration data, attempt to make the cut-off at 2.4.0.
Diffstat (limited to 'src/osmo-bts-sysmo/l1_if.c')
-rw-r--r--src/osmo-bts-sysmo/l1_if.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/osmo-bts-sysmo/l1_if.c b/src/osmo-bts-sysmo/l1_if.c
index d848f7de..e42d26cc 100644
--- a/src/osmo-bts-sysmo/l1_if.c
+++ b/src/osmo-bts-sysmo/l1_if.c
@@ -1102,7 +1102,7 @@ static int reset_compl_cb(struct gsm_bts_trx *trx, struct msgb *resp)
/* obtain version information on DSP/FPGA and band capabilities */
l1if_get_info(fl1h);
-#if SUPERFEMTO_API_VERSION >= SUPERFEMTO_API(2,1,0)
+#if SUPERFEMTO_API_VERSION >= SUPERFEMTO_API(2,4,0)
/* load calibration tables (if we know their path) */
if (fl1h->calib_path)
calib_load(fl1h);