a_iface: remove unused variable

Change-Id: If964ac5344fa0275c07755b5a43d37ce186d3ca2
This commit is contained in:
Philipp Maier 2017-07-03 13:15:03 +02:00 committed by Neels Hofmeyr
parent 49603972aa
commit d3fa9002a9
3 changed files with 3 additions and 3 deletions

View File

@ -49,7 +49,7 @@ struct bsc_context {
};
/* Initalize A interface connection between to MSC and BSC */
int a_init(const void *ctx, struct osmo_sccp_instance *sccp, struct gsm_network *network);
int a_init(struct osmo_sccp_instance *sccp, struct gsm_network *network);
/* Send DTAP message via A-interface */
int a_iface_tx_dtap(struct msgb *msg);

View File

@ -539,7 +539,7 @@ void a_clear_all(struct osmo_sccp_user *scu, const struct osmo_sccp_addr *bsc_ad
}
/* Initalize A interface connection between to MSC and BSC */
int a_init(const void *ctx, struct osmo_sccp_instance *sccp, struct gsm_network *network)
int a_init(struct osmo_sccp_instance *sccp, struct gsm_network *network)
{
OSMO_ASSERT(sccp);
OSMO_ASSERT(network);

View File

@ -511,7 +511,7 @@ TODO: we probably want some of the _net_ ctrl commands from bsc_base_ctrl_cmds_i
iu_init(tall_msc_ctx, msc_network->sccp, rcvmsg_iu_cs, rx_iu_event);
/* Set up A interface */
a_init(tall_msc_ctx, msc_network->sccp, msc_network);
a_init(msc_network->sccp, msc_network);
if (msc_cmdline_config.daemonize) {
rc = osmo_daemonize();