trx/radio_if.py: print type of RadioInterface

Change-Id: I6c1ba8546caec122cd1ea0ed87656f691abec068
diff --git a/python/trx/radio_if.py b/python/trx/radio_if.py
index 41d20fd..235c0a1 100644
--- a/python/trx/radio_if.py
+++ b/python/trx/radio_if.py
@@ -65,14 +65,18 @@
 	# basically, the DL freq. of ARFCN 0
 	DUMMY_FREQ = 935e6
 
+	# Human-readable description
+	def __str__(self):
+		return "(generic)"
+
 	def __init__(self, phy_args, phy_sample_rate,
 			phy_rx_gain, phy_tx_gain, phy_ppm,
 			phy_rx_antenna, phy_tx_antenna,
 			phy_freq_offset, trx_bind_addr,
 			trx_remote_addr, trx_base_port):
 
-		print("[i] Init Radio interface (L:%s:%u <-> R:%s:%u)"
-			% (trx_bind_addr, trx_base_port + 2,
+		print("[i] Init %s Radio interface (L:%s:%u <-> R:%s:%u)"
+			% (self, trx_bind_addr, trx_base_port + 2,
 				trx_remote_addr, trx_base_port + 102))
 
 		# PHY specific variables
diff --git a/python/trx/radio_if_uhd.py b/python/trx/radio_if_uhd.py
index 0b2ef7a..cb809ed 100644
--- a/python/trx/radio_if_uhd.py
+++ b/python/trx/radio_if_uhd.py
@@ -27,6 +27,10 @@
 from radio_if import RadioInterface
 
 class RadioInterfaceUHD(RadioInterface):
+	# Human-readable description
+	def __str__(self):
+		return "UHD"
+
 	def phy_init_source(self):
 		self._phy_src = uhd.usrp_source(self.phy_args,
 			uhd.stream_args(cpu_format = "fc32",