abis_om2000: Mark om2k_mo_fsm_start() as static

It's not used anywhere outside of the source file

Change-Id: If9ebf07ac662607826270df0b0966c8dd5026f1c
This commit is contained in:
Harald Welte 2020-12-21 11:16:04 +01:00 committed by laforge
parent 1a7bdb2e0d
commit a3b91de873
1 changed files with 2 additions and 3 deletions

View File

@ -1959,9 +1959,8 @@ static struct osmo_fsm om2k_mo_fsm = {
.timer_cb = om2k_mo_timer_cb,
};
struct osmo_fsm_inst *om2k_mo_fsm_start(struct osmo_fsm_inst *parent,
uint32_t term_event,
struct gsm_bts_trx *trx, struct om2k_mo *mo)
static struct osmo_fsm_inst *om2k_mo_fsm_start(struct osmo_fsm_inst *parent, uint32_t term_event,
struct gsm_bts_trx *trx, struct om2k_mo *mo)
{
struct osmo_fsm_inst *fi;
struct om2k_mo_fsm_priv *omfp;