nm_rcarrier_fsm: fix indention of ENABLED state

Change-Id: I52945babd2b31b20a578ec6818af763b0dd98d1a
This commit is contained in:
Alexander Couzens 2022-11-14 13:15:40 +00:00 committed by lynxis lazus
parent af189fb786
commit cf3145c966
1 changed files with 9 additions and 9 deletions

View File

@ -373,15 +373,15 @@ static struct osmo_fsm_state nm_rcarrier_fsm_states[] = {
.action = st_op_disabled_offline,
},
[NM_RCARRIER_ST_OP_ENABLED] = {
.in_event_mask =
X(NM_EV_STATE_CHG_REP),
.out_state_mask =
X(NM_RCARRIER_ST_OP_DISABLED_NOTINSTALLED) |
X(NM_RCARRIER_ST_OP_DISABLED_DEPENDENCY) |
X(NM_RCARRIER_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_RCARRIER_ST_OP_DISABLED_NOTINSTALLED) |
X(NM_RCARRIER_ST_OP_DISABLED_DEPENDENCY) |
X(NM_RCARRIER_ST_OP_DISABLED_OFFLINE),
.name = "ENABLED",
.onenter = st_op_enabled_on_enter,
.action = st_op_enabled,
},
};