summaryrefslogtreecommitdiff
path: root/decoders/mdio/pd.py
diff options
context:
space:
mode:
Diffstat (limited to 'decoders/mdio/pd.py')
-rw-r--r--decoders/mdio/pd.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/decoders/mdio/pd.py b/decoders/mdio/pd.py
index 3580acc..9ea3a27 100644
--- a/decoders/mdio/pd.py
+++ b/decoders/mdio/pd.py
@@ -275,10 +275,9 @@ class Decoder(srd.Decoder):
def state_DATA(self, mdio):
if self.data == -1:
self.data = 0
- self.putff([2, ['TURNAROUND', 'TA', 'T']])
+ self.putff([2, ['TA', 'T']])
if self.ta_invalid:
- self.putff([4, ['TURNAROUND%s' % self.ta_invalid,
- 'TA%s' % self.ta_invalid, 'TA', 'T']])
+ self.putff([4, ['TA%s' % self.ta_invalid, 'TA', 'T']])
self.ss_frame_field = self.samplenum
self.data_bits -= 1
self.data |= mdio << self.data_bits