aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPau Espin Pedrol <pespin@sysmocom.de>2021-07-29 13:46:34 +0200
committerPau Espin Pedrol <pespin@sysmocom.de>2021-08-23 17:14:23 +0200
commit628d881247558805ef989e93fbc81371b5fa6caa (patch)
treed4f22b080a0113dfbedd2ced7e8e295a61ab40d1
parentfbc1baa13979025dbf10ba13624c03f416f0ba9e (diff)
Fix typos in comments documenting fsm st chg macro
-rw-r--r--src/nacc_fsm.c2
-rw-r--r--src/tbf_fsm.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/nacc_fsm.c b/src/nacc_fsm.c
index d2702d47..9a5f5b5e 100644
--- a/src/nacc_fsm.c
+++ b/src/nacc_fsm.c
@@ -53,7 +53,7 @@ static const struct osmo_tdef_state_timeout nacc_fsm_timeouts[32] = {
[NACC_ST_DONE] = {},
};
-/* Transition to a state, using the T timer defined in assignment_fsm_timeouts.
+/* Transition to a state, using the T timer defined in nacc_fsm_timeouts.
* The actual timeout value is in turn obtained from conn->T_defs.
* Assumes local variable fi exists. */
diff --git a/src/tbf_fsm.h b/src/tbf_fsm.h
index 1874bc34..9d2919d3 100644
--- a/src/tbf_fsm.h
+++ b/src/tbf_fsm.h
@@ -57,7 +57,7 @@ struct tbf_fsm_ctx {
};
extern const struct osmo_tdef_state_timeout tbf_fsm_timeouts[32];
-/* Transition to a state, using the T timer defined in assignment_fsm_timeouts.
+/* Transition to a state, using the T timer defined in tbf_fsm_timeouts.
* The actual timeout value is in turn obtained from conn->T_defs.
* Assumes local variable fi exists. */
#define tbf_fsm_state_chg(fi, NEXT_STATE) \