aboutsummaryrefslogtreecommitdiffstats
path: root/src/sysmo_sock.cpp
diff options
context:
space:
mode:
authorAndreas Eversberg <jolly@eversberg.eu>2013-01-25 07:22:59 +0100
committerAndreas Eversberg <jolly@eversberg.eu>2013-01-25 07:22:59 +0100
commit3afe56d7d8d63d64ec3afb7d3d3b1490426bdfa2 (patch)
tree89e0934f49f355067c339334b77a6db4586656ec /src/sysmo_sock.cpp
parent827ed55c3b6fdaa27c8454af1535b201a107626f (diff)
Fixed closing of PDCH when enabling sysmo-bts' direct DSP access
If not compiled with this support, the closing function does not exists, so it must not be called. Removed a "#warning", because closing is already supported.
Diffstat (limited to 'src/sysmo_sock.cpp')
-rw-r--r--src/sysmo_sock.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/sysmo_sock.cpp b/src/sysmo_sock.cpp
index 1982472b..a4cc6ded 100644
--- a/src/sysmo_sock.cpp
+++ b/src/sysmo_sock.cpp
@@ -99,10 +99,12 @@ static void pcu_sock_close(struct pcu_sock_state *state, int lost)
/* disable all slots, kick all TBFs */
for (trx = 0; trx < 8; trx++) {
+#ifdef ENABLE_SYSMODSP
if (bts->trx[trx].fl1h) {
l1if_close_pdch(bts->trx[trx].fl1h);
bts->trx[trx].fl1h = NULL;
}
+#endif
for (ts = 0; ts < 8; ts++)
bts->trx[trx].pdch[ts].enable = 0;
for (tfi = 0; tfi < 32; tfi++) {