aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHarald Welte <laforge@gnumonks.org>2015-12-05 15:57:09 +0100
committerHarald Welte <laforge@gnumonks.org>2015-12-05 15:57:09 +0100
commit62d7502b82cbe56211bcd4aa3a363757650fced3 (patch)
tree6da91d6ec0459f400d1ef69181bc25b43aba421b
parent2d5481da278f8b09c4772d54f044ba2b26eeef14 (diff)
osmo-bts-sysmo: Disable DSP trace flags by default
-rw-r--r--src/common/l1sap.c2
-rw-r--r--src/osmo-bts-sysmo/main.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/common/l1sap.c b/src/common/l1sap.c
index 4619a989..e6c361e6 100644
--- a/src/common/l1sap.c
+++ b/src/common/l1sap.c
@@ -602,7 +602,7 @@ static int l1sap_tch_rts_ind(struct gsm_bts_trx *trx,
g_time.t1, g_time.t2, g_time.t3, chan_nr);
lchan = get_active_lchan_by_chan_nr(trx, chan_nr);
- if (!lchan) {
+ if (!lchan)
return 0;
if (!lchan->loopback && lchan->abis_ip.rtp_socket) {
diff --git a/src/osmo-bts-sysmo/main.c b/src/osmo-bts-sysmo/main.c
index bee5bda2..0b2b9ff3 100644
--- a/src/osmo-bts-sysmo/main.c
+++ b/src/osmo-bts-sysmo/main.c
@@ -63,7 +63,7 @@ int pcu_direct = 0;
static const char *config_file = "osmo-bts.cfg";
static int daemonize = 0;
-static unsigned int dsp_trace = 0x71c00020;
+static unsigned int dsp_trace = 0x00000000;
static int rt_prio = -1;
static char *gsmtap_ip = 0;