lynxis lazus has uploaded this change for review. ( https://gerrit.osmocom.org/c/osmo-bts/+/30702 )
Change subject: OML: NSVC[1] MO should have the same initial state as NVSC[0] ......................................................................
OML: NSVC[1] MO should have the same initial state as NVSC[0]
There is no reason why they should have different initial states. Keep it consistent with the other MOs.
Change-Id: I9fd744ec79da9fc26d3ebe9857b2b0bbd5fcd1ff --- M src/common/bts.c 1 file changed, 1 insertion(+), 1 deletion(-)
git pull ssh://gerrit.osmocom.org:29418/osmo-bts refs/changes/02/30702/1
diff --git a/src/common/bts.c b/src/common/bts.c index 7f252da..9cc694f 100644 --- a/src/common/bts.c +++ b/src/common/bts.c @@ -375,7 +375,7 @@ oml_mo_state_init(&bts->gprs.nse.mo, NM_OPSTATE_DISABLED, NM_AVSTATE_DEPENDENCY); oml_mo_state_init(&bts->gprs.cell.mo, NM_OPSTATE_DISABLED, NM_AVSTATE_DEPENDENCY); oml_mo_state_init(&bts->gprs.nsvc[0].mo, NM_OPSTATE_DISABLED, NM_AVSTATE_DEPENDENCY); - oml_mo_state_init(&bts->gprs.nsvc[1].mo, NM_OPSTATE_DISABLED, NM_AVSTATE_OFF_LINE); + oml_mo_state_init(&bts->gprs.nsvc[1].mo, NM_OPSTATE_DISABLED, NM_AVSTATE_DEPENDENCY);
/* allocate a talloc pool for ORTP to ensure it doesn't have to go back * to the libc malloc all the time */