lchan_rtp_fsm: make _fsm_timer_cb and _fsm_cleanup static

The functions lchan_rtp_fsm_timer_cb() and lchan_rtp_fsm_cleanup() only
used in lchan_rtp_fsm.c, lets make them static.

Change-Id: I31940aff166ccd7a9612574536674e4e483a3cb9
This commit is contained in:
Philipp Maier 2020-07-08 13:44:15 +02:00
parent 7b2b4309cc
commit e1ec35a1f6
1 changed files with 2 additions and 2 deletions

View File

@ -730,7 +730,7 @@ static const struct value_string lchan_rtp_fsm_event_names[] = {
{}
};
int lchan_rtp_fsm_timer_cb(struct osmo_fsm_inst *fi)
static int lchan_rtp_fsm_timer_cb(struct osmo_fsm_inst *fi)
{
struct gsm_lchan *lchan = lchan_rtp_fi_lchan(fi);
lchan->release.in_error = true;
@ -739,7 +739,7 @@ int lchan_rtp_fsm_timer_cb(struct osmo_fsm_inst *fi)
return 0;
}
void lchan_rtp_fsm_cleanup(struct osmo_fsm_inst *fi, enum osmo_fsm_term_cause cause)
static void lchan_rtp_fsm_cleanup(struct osmo_fsm_inst *fi, enum osmo_fsm_term_cause cause)
{
struct gsm_lchan *lchan = lchan_rtp_fi_lchan(fi);
if (lchan->mgw_endpoint_ci_bts) {