pcu_l1_if: get rid of strange paging group calculation

The PCU uses a 16 bit integer value as paging group which does in fact
not really resamble the paging group. Instead it encodes the last three
digits of the IMSI from which the paging group can be calculated. The
value is then eventually converted back to Ascii-digits and then sent
over the PCU-IF interface. Lets get rid of this weird conversion and
use the IMSI directly.

Change-Id: I40d7fc14c9591b3de091e425faaf325421c70a0e
diff --git a/src/gprs_rlcmac.cpp b/src/gprs_rlcmac.cpp
index 1ea0872..ea7fb9a 100644
--- a/src/gprs_rlcmac.cpp
+++ b/src/gprs_rlcmac.cpp
@@ -29,7 +29,7 @@
 extern void *tall_pcu_ctx;
 
 int gprs_rlcmac_paging_request(struct gprs_rlcmac_bts *bts, const struct osmo_mobile_identity *mi,
-			       uint16_t pgroup)
+			       const char *imsi)
 {
 	if (log_check_level(DRLCMAC, LOGL_NOTICE)) {
 		char str[64];
@@ -44,7 +44,7 @@
 		return -1;
 	}
 	bts_do_rate_ctr_inc(bts, CTR_PCH_REQUESTS);
-	pcu_l1if_tx_pch(bts, paging_request, plen, pgroup);
+	pcu_l1if_tx_pch(bts, paging_request, plen, imsi);
 	bitvec_free(paging_request);
 
 	return 0;