aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPau Espin Pedrol <pespin@sysmocom.de>2019-12-10 17:09:51 +0100
committerPau Espin Pedrol <pespin@sysmocom.de>2019-12-10 17:09:51 +0100
commit3f064f516da34cd1ad4ea0cb61b77ac409ac23b5 (patch)
treebef25360ff22abfd7a2e1e39394d15a5d09e69cb
parent32499b614b9453f50df806ff52a4e3d1654d0e4f (diff)
prs_bssgp_pcu.cpp: Mark priv funcs as static and remove trailing whitespace
-rw-r--r--src/gprs_bssgp_pcu.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gprs_bssgp_pcu.cpp b/src/gprs_bssgp_pcu.cpp
index 914afc07..8ce1342a 100644
--- a/src/gprs_bssgp_pcu.cpp
+++ b/src/gprs_bssgp_pcu.cpp
@@ -171,7 +171,7 @@ static int gprs_bssgp_pcu_rx_dl_ud(struct msgb *msg, struct tlv_parsed *tp)
ms_class, egprs_ms_class, delay_csec, data, len);
}
-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, struct tlv_parsed *tp)
{
char imsi[16];
uint8_t *ptmsi = (uint8_t *) TLVP_VAL(tp, BSSGP_IE_TMSI);
@@ -709,7 +709,7 @@ static GprsCodingScheme max_coding_scheme_dl(struct gprs_rlcmac_bts *bts)
return GprsCodingScheme::getGprsByNum(num);
}
-int gprs_bssgp_tx_fc_bvc(void)
+static int gprs_bssgp_tx_fc_bvc(void)
{
struct gprs_rlcmac_bts *bts;
uint32_t bucket_size; /* oct */
@@ -967,7 +967,7 @@ void gprs_bssgp_destroy(void)
the_pcu.nsvc_unblocked = 0;
the_pcu.bvc_sig_reset = 0;
the_pcu.bvc_reset = 0;
- the_pcu.bvc_unblocked = 0;
+ the_pcu.bvc_unblocked = 0;
gprs_ns_destroy(nsi);