aboutsummaryrefslogtreecommitdiffstats
path: root/src/osmo-bts-sysmo/utils.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/osmo-bts-sysmo/utils.c')
-rw-r--r--src/osmo-bts-sysmo/utils.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/osmo-bts-sysmo/utils.c b/src/osmo-bts-sysmo/utils.c
index 0114fd3e..f576eef5 100644
--- a/src/osmo-bts-sysmo/utils.c
+++ b/src/osmo-bts-sysmo/utils.c
@@ -25,6 +25,7 @@
#include <osmo-bts/bts.h>
#include <osmo-bts/gsm_data.h>
+#include <osmo-bts/logging.h>
#include "femtobts.h"
#include "l1_if.h"
@@ -128,6 +129,10 @@ int sysmobts_get_nominal_power(struct gsm_bts_trx *trx)
/* 5W(39dBm) per TRX. This could be raiesd to 10W(40dBm)
* if the second TRX is not used. */
return 37;
+ default:
+ LOGP(DL1C, LOGL_ERROR, "Model number %u/0x%x not known.\n",
+ fl1h->hw_info.model_nr, fl1h->hw_info.model_nr);
+ break;
}
return -1;
}