aboutsummaryrefslogtreecommitdiffstats
path: root/src/xua_as_fsm.c
diff options
context:
space:
mode:
authorPau Espin Pedrol <pespin@sysmocom.de>2019-11-05 21:12:19 +0100
committerlaforge <laforge@osmocom.org>2019-11-06 04:52:34 +0000
commite924573490ae5b6c2c80bd6cb6c132fb038324c8 (patch)
treef23f69dea3b3562b385a23968f17e6ca42ac78c3 /src/xua_as_fsm.c
parentb521a2ed09b368a30d2cd17190a3a574a79c68ab (diff)
xua: Fix private function name
The function clearly does stuff the other way as its name used to describe. Change-Id: Ib65a0f2706e2eefe2446d3c9a6bdd19cf9cb81f2
Diffstat (limited to 'src/xua_as_fsm.c')
-rw-r--r--src/xua_as_fsm.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/xua_as_fsm.c b/src/xua_as_fsm.c
index 97a2107..ab98da8 100644
--- a/src/xua_as_fsm.c
+++ b/src/xua_as_fsm.c
@@ -35,7 +35,7 @@ static struct msgb *encode_notify(const struct osmo_xlm_prim_notify *npar)
return msg;
}
-static int asp_notify_all_as(struct osmo_ss7_as *as, struct osmo_xlm_prim_notify *npar)
+static int as_notify_all_asp(struct osmo_ss7_as *as, struct osmo_xlm_prim_notify *npar)
{
struct msgb *msg;
unsigned int i, sent = 0;
@@ -264,7 +264,7 @@ static void xua_as_fsm_onenter(struct osmo_fsm_inst *fi, uint32_t old_state)
/* TODO: ASP-Id of ASP triggering this state change */
- asp_notify_all_as(xafp->as, &npar);
+ as_notify_all_asp(xafp->as, &npar);
};
static void xua_as_fsm_inactive(struct osmo_fsm_inst *fi, uint32_t event, void *data)