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]
This commit is contained in:
Holger Hans Peter Freyther 2012-02-03 20:31:05 +01:00
parent 863dc9bc84
commit c8ddf73c8f
1 changed files with 0 additions and 3 deletions

View File

@ -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;