]> sigrok.org Git - libsigrokdecode.git/blobdiff - decoders/edid/edid.py
srd: Add usable one-liner descriptions for all PDs.
[libsigrokdecode.git] / decoders / edid / edid.py
index b4b5f844698b581d8e0c72de44b2c43d046d4995..835f300dc39cc6ac5664de708d9ebf0a4339ea9b 100644 (file)
@@ -79,7 +79,7 @@ class Decoder(srd.Decoder):
     id = 'edid'
     name = 'EDID'
     longname = 'Extended display identification data'
-    desc = 'A data structure describing the capabilities of a display device.'
+    desc = 'Data structure describing display device capabilities.'
     license = 'gplv3+'
     inputs = ['ddc2']
     outputs = ['edid']
@@ -101,6 +101,9 @@ class Decoder(srd.Decoder):
     def start(self, metadata):
         self.out_ann = self.add(srd.OUTPUT_ANN, 'edid')
 
+    def report(self):
+        pass
+
     def decode(self, ss, es, data):
         if type(data) != int:
             raise Exception('malformed ddc2 input: expected 1 byte')