Convert tbf->control_ts to be a gprs_rlcmac_pdch*

This allows having full information on the control TS easily reachable
(like TRX ofthe PDCH), and makes it easy to compare TS by simply
matching the pointer address.

Change-Id: I6a97b6528b2f9d78dfbca8fb97ab7c621f777fc7
diff --git a/src/pcu_vty_functions.cpp b/src/pcu_vty_functions.cpp
index facc34c..5cdfda3 100644
--- a/src/pcu_vty_functions.cpp
+++ b/src/pcu_vty_functions.cpp
@@ -68,7 +68,7 @@
 		state_flags & (1 << GPRS_RLCMAC_FLAG_CCCH),
 		state_flags & (1 << GPRS_RLCMAC_FLAG_PACCH),
 		first_common_ts ? first_common_ts->ts_no : -1,
-		tbf->control_ts,
+		tbf->control_ts ? tbf->control_ts->ts_no : -1,
 		tbf->ms_class(),
 		ms_egprs_ms_class(ms),
 		VTY_NEWLINE);