nm_bts_fsm: fix sourcecode formatting

Change-Id: If7db7f5611e0ebf69d66b135515c0a08c6edfb11
This commit is contained in:
Philipp Maier 2022-01-17 11:28:44 +01:00
parent 326ee2ea49
commit 99f97ee90f
1 changed files with 9 additions and 9 deletions

View File

@ -366,15 +366,15 @@ static struct osmo_fsm_state nm_bts_fsm_states[] = {
.action = st_op_disabled_offline,
},
[NM_BTS_ST_OP_ENABLED] = {
.in_event_mask =
X(NM_EV_STATE_CHG_REP),
.out_state_mask =
X(NM_BTS_ST_OP_DISABLED_NOTINSTALLED) |
X(NM_BTS_ST_OP_DISABLED_DEPENDENCY) |
X(NM_BTS_ST_OP_DISABLED_OFFLINE),
.name = "ENABLED",
.onenter = st_op_enabled_on_enter,
.action = st_op_enabled,
.in_event_mask =
X(NM_EV_STATE_CHG_REP),
.out_state_mask =
X(NM_BTS_ST_OP_DISABLED_NOTINSTALLED) |
X(NM_BTS_ST_OP_DISABLED_DEPENDENCY) |
X(NM_BTS_ST_OP_DISABLED_OFFLINE),
.name = "ENABLED",
.onenter = st_op_enabled_on_enter,
.action = st_op_enabled,
},
};