From 1bcdd730b69d30a82930e9a473e74425a2cc065f Mon Sep 17 00:00:00 2001 From: Max Date: Wed, 7 Nov 2018 12:22:23 +0100 Subject: constify rsl_tx_ipacc_*cx() parameters Change-Id: Ib34c8e3fb51d067581aefa1c80f8be1f6db9512e --- src/osmo-bsc/abis_rsl.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/osmo-bsc/abis_rsl.c') diff --git a/src/osmo-bsc/abis_rsl.c b/src/osmo-bsc/abis_rsl.c index 2eda884eb..bd104edd5 100644 --- a/src/osmo-bsc/abis_rsl.c +++ b/src/osmo-bsc/abis_rsl.c @@ -1830,7 +1830,7 @@ static void ipac_parse_rtp(struct gsm_lchan *lchan, struct tlv_parsed *tv, const /*! Send Issue IPA RSL CRCX to configure the RTP port of the BTS. * \param[in] lchan Logical Channel for which we issue CRCX */ -int rsl_tx_ipacc_crcx(struct gsm_lchan *lchan) +int rsl_tx_ipacc_crcx(const struct gsm_lchan *lchan) { struct msgb *msg = rsl_msgb_alloc(); struct abis_rsl_dchan_hdr *dh; @@ -1856,7 +1856,7 @@ int rsl_tx_ipacc_crcx(struct gsm_lchan *lchan) * \param[in] lchan Logical Channel for which we issue MDCX * Remote (MGW) IP address, port and payload types for RTP are determined from lchan->abis_ip. */ -int rsl_tx_ipacc_mdcx(struct gsm_lchan *lchan) +int rsl_tx_ipacc_mdcx(const struct gsm_lchan *lchan) { struct msgb *msg = rsl_msgb_alloc(); struct abis_rsl_dchan_hdr *dh; -- cgit v1.2.3