aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPau Espin Pedrol <pespin@espeweb.net>2021-02-01 19:33:59 +0100
committerPau Espin Pedrol <pespin@espeweb.net>2021-02-01 19:34:53 +0100
commit1aef113bb7d5f45a2d49c6c982b77899a9c291ff (patch)
treedf9d432057df055ba3b70f86096b0b13adb1461d
parent57dcde424255637354832159c6bb779dfb69189d (diff)
nacc: Fix typo in function name
-rw-r--r--src/nacc_fsm.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/nacc_fsm.c b/src/nacc_fsm.c
index 510b3d80..d160404e 100644
--- a/src/nacc_fsm.c
+++ b/src/nacc_fsm.c
@@ -444,13 +444,13 @@ static void st_tx_neighbour_data(struct osmo_fsm_inst *fi, uint32_t event, void
}
}
-/* st_cell_cgh_continue_on_enter:
+/* st_cell_chg_continue_on_enter:
* At this point, we already sent all Pkt Cell Neighbour Change rlcmac
* blocks, and we only need to wait to be scheduled again to send PKT
* CELL CHANGE NOTIFICATION and then we are done
*/
-static void st_cell_cgh_continue(struct osmo_fsm_inst *fi, uint32_t event, void *data)
+static void st_cell_chg_continue(struct osmo_fsm_inst *fi, uint32_t event, void *data)
{
struct nacc_fsm_ctx *ctx = (struct nacc_fsm_ctx *)fi->priv;
struct nacc_ev_create_rlcmac_msg_ctx *data_ctx;
@@ -545,7 +545,7 @@ static struct osmo_fsm_state nacc_fsm_states[] = {
.out_state_mask =
X(NACC_ST_DONE),
.name = "TX_CELL_CHG_CONTINUE",
- .action = st_cell_cgh_continue,
+ .action = st_cell_chg_continue,
},
[NACC_ST_DONE] = {
.in_event_mask = 0,