BSSGP: constify argument 'tp' of gprs_bssgp_pcu_rx_paging_{cs,ps}

Change-Id: I24e48964a0ff86c2ca962ab3928d07b1c9200390
This commit is contained in:
Vadim Yanitskiy 2020-10-31 02:00:21 +07:00 committed by laforge
parent e9bddabc01
commit 2c1fed20ab
1 changed files with 2 additions and 2 deletions

View File

@ -201,7 +201,7 @@ static unsigned int get_paging_mi(struct osmo_mobile_identity *mi, const struct
return 0;
}
static int gprs_bssgp_pcu_rx_paging_cs(struct msgb *msg, struct tlv_parsed *tp)
static int gprs_bssgp_pcu_rx_paging_cs(struct msgb *msg, const struct tlv_parsed *tp)
{
struct osmo_mobile_identity mi;
int rc;
@ -212,7 +212,7 @@ static int gprs_bssgp_pcu_rx_paging_cs(struct msgb *msg, struct tlv_parsed *tp)
return BTS::main_bts()->add_paging(tlvp_val8(tp, BSSGP_IE_CHAN_NEEDED, 0), &mi);
}
static int gprs_bssgp_pcu_rx_paging_ps(struct msgb *msg, struct tlv_parsed *tp)
static int gprs_bssgp_pcu_rx_paging_ps(struct msgb *msg, const struct tlv_parsed *tp)
{
struct osmo_mobile_identity mi_imsi;
struct osmo_mobile_identity paging_mi;