aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHolger Hans Peter Freyther <zecke@selfish.org>2012-02-03 20:31:05 +0100
committerHolger Hans Peter Freyther <zecke@selfish.org>2012-02-03 20:31:05 +0100
commitc8ddf73c8ff6bd9c9950876e231f8cf5dbe2212b (patch)
tree7384150168d2413ba9b619695b6ce09c4ebd4955
parent863dc9bc843a8053ade0fffd21219dbfe2ce4010 (diff)
bts_ipaccess_nanobts.c: Remove unused variable.
This must have been obsoleted by the move to libosmo-abis. GCC warning: bts_ipaccess_nanobts.c: In function ‘ipaccess_drop_oml’: bts_ipaccess_nanobts.c:509:21: warning: variable ‘line’ set but not used [-Wunused-but-set-variable]
-rw-r--r--openbsc/src/libbsc/bts_ipaccess_nanobts.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/openbsc/src/libbsc/bts_ipaccess_nanobts.c b/openbsc/src/libbsc/bts_ipaccess_nanobts.c
index 7ece94ee1..49243f89b 100644
--- a/openbsc/src/libbsc/bts_ipaccess_nanobts.c
+++ b/openbsc/src/libbsc/bts_ipaccess_nanobts.c
@@ -506,13 +506,10 @@ void ipaccess_drop_rsl(struct gsm_bts_trx *trx)
void ipaccess_drop_oml(struct gsm_bts *bts)
{
struct gsm_bts_trx *trx;
- struct e1inp_line *line;
if (!bts->oml_link)
return;
- line = bts->oml_link->ts->line;
-
e1inp_sign_link_destroy(bts->oml_link);
bts->oml_link = NULL;