pdch: Simplify the reset code, rename variables to XYZ_no

Simplify the reset code now that the PDCH can know where it is
located. Rename the variables in the sba to trx_no and ts_no as
it stores the number and not the actual thing.
diff --git a/src/bts.cpp b/src/bts.cpp
index 403b1e3..b2ec50f 100644
--- a/src/bts.cpp
+++ b/src/bts.cpp
@@ -226,7 +226,7 @@
 }
 
 /* TODO: kill the parameter and make a pdch belong to a trx.. to a bts.. */
-void gprs_rlcmac_pdch::free_resources(BTS *bts, uint8_t trx, uint8_t ts)
+void gprs_rlcmac_pdch::free_resources()
 {
 	struct gprs_rlcmac_paging *pag;
 
@@ -241,7 +241,7 @@
 	while ((pag = dequeue_paging()))
 		talloc_free(pag);
 
-	bts->sba()->free_resources(trx, ts);
+	trx->bts->sba()->free_resources(this);
 }
 
 struct gprs_rlcmac_paging *gprs_rlcmac_pdch::dequeue_paging()