Drop unused param in oml_init()

Change-Id: I96d8359f4ae13c9f47cc87d87fde6d2047169a49
This commit is contained in:
Pau Espin 2020-10-09 20:57:55 +02:00 committed by pespin
parent e1de96088d
commit ca5d1e6ba6
3 changed files with 3 additions and 3 deletions

View File

@ -32,7 +32,7 @@ struct gsm_abis_mo {
struct gsm_bts *bts;
};
int oml_init(struct gsm_abis_mo *mo);
int oml_init(void);
int down_oml(struct gsm_bts *bts, struct msgb *msg);
struct msgb *oml_msgb_alloc(void);

View File

@ -259,7 +259,7 @@ void abis_init(struct gsm_bts *bts)
{
g_bts = bts;
oml_init(&bts->mo);
oml_init();
libosmo_abis_init(tall_bts_ctx);
osmo_signal_register_handler(SS_L_INPUT, &inp_s_cbfn, bts);

View File

@ -1544,7 +1544,7 @@ int down_oml(struct gsm_bts *bts, struct msgb *msg)
return ret;
}
int oml_init(struct gsm_abis_mo *mo)
int oml_init()
{
DEBUGP(DOML, "Initializing OML attribute definitions\n");
tlv_def_patch(&abis_nm_att_tlvdef_ipa_local, &abis_nm_att_tlvdef_ipa);