aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPau Espin Pedrol <pespin@sysmocom.de>2022-05-04 15:16:47 +0200
committerPau Espin Pedrol <pespin@sysmocom.de>2022-05-04 15:16:52 +0200
commit94890021a82d81940febc361773e099367d8893e (patch)
tree2c8444786758224ff8488494adca96d20e75eb17
parent82a18caf11566e5960d4a763e2264cbbc1226d19 (diff)
Remove commented out code
This code is not used currently. Furthemore, it makes little sense to transmit an OPSTART if the BTS already told us it is enabled (because OPSTART is what moves the BTS into operational enabled state). Change-Id: I2c65e0803fbde7de9497089b562275baad58936a
-rw-r--r--src/osmo-bsc/abis_nm.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/osmo-bsc/abis_nm.c b/src/osmo-bsc/abis_nm.c
index bb44c70dc..e63f3da79 100644
--- a/src/osmo-bsc/abis_nm.c
+++ b/src/osmo-bsc/abis_nm.c
@@ -305,15 +305,6 @@ static int abis_nm_rx_statechg_rep(struct msgb *mb)
} else {
DEBUGPC(DNM, "(No State change detected)\n");
}
-#if 0
- if (op_state == 1) {
- /* try to enable objects that are disabled */
- abis_nm_opstart(bts, foh->obj_class,
- foh->obj_inst.bts_nr,
- foh->obj_inst.trx_nr,
- foh->obj_inst.ts_nr);
- }
-#endif
return 0;
}