Remove unnecssary debug code in tibit_olt.c and tibit_onu.c
Change-Id: I0e8b8268972a16a0d24a58a26b37fa80780d5764
diff --git a/voltha/adapters/tibit_olt/tibit_olt.py b/voltha/adapters/tibit_olt/tibit_olt.py
index cdd2d1f..a4b91d6 100644
--- a/voltha/adapters/tibit_olt/tibit_olt.py
+++ b/voltha/adapters/tibit_olt/tibit_olt.py
@@ -1464,16 +1464,6 @@
# Get Response
if (dpoeOpcode == 0x02):
- # Get a specific TLV value
- branch = 0xD7
- leaf = 0x0006
- (rc,bytesRead,value,retbranch,retleaf) = self._handle_get_value(loadstr, startOfTlvs, branch, leaf)
- if (rc == True):
- log.info('Branch 0x{:X} Leaf 0x{:0>4X} value = {}'.format(branch, leaf, value))
- else:
- log.info('Branch 0x{:X} Leaf 0x{:0>4X} no value'.format(branch, leaf))
-
- # Walk through all TLV values
bytesRead = 0
rc = True
while(rc == True):
diff --git a/voltha/adapters/tibit_onu/tibit_onu.py b/voltha/adapters/tibit_onu/tibit_onu.py
index 5801101..5ffe024 100644
--- a/voltha/adapters/tibit_onu/tibit_onu.py
+++ b/voltha/adapters/tibit_onu/tibit_onu.py
@@ -773,16 +773,6 @@
# Get Response
if (dpoeOpcode == 0x02):
- # Get a specific TLV value
- branch = 0xD7
- leaf = 0x0006
- (rc,bytesRead,value,retbranch,retleaf) = self._handle_get_value(loadstr, startOfTlvs, branch, leaf)
- if (rc == True):
- log.info('Branch 0x{:X} Leaf 0x{:0>4X} value = {}'.format(branch, leaf, value))
- else:
- log.info('Branch 0x{:X} Leaf 0x{:0>4X} no value'.format(branch, leaf))
-
- # Walk through all TLV values
bytesRead = 0
rc = True
while(rc == True):