diff options
author | Uwe Hermann <uwe@hermann-uwe.de> | 2019-03-16 18:46:01 +0100 |
---|---|---|
committer | Uwe Hermann <uwe@hermann-uwe.de> | 2019-03-16 18:46:01 +0100 |
commit | 2787cf2abc0187679e87d3735ca3e64c2a1a91c8 (patch) | |
tree | 8baddf2048d8383a257284eabd238f7f4397568f /decoders/xfp | |
parent | 2b46b01c72c06683b3130647affe92c425d573b5 (diff) | |
download | libsigrokdecode-2787cf2abc0187679e87d3735ca3e64c2a1a91c8.tar.gz libsigrokdecode-2787cf2abc0187679e87d3735ca3e64c2a1a91c8.zip |
decoders: Various cosmetic/consistency/typo fixes.
Diffstat (limited to 'decoders/xfp')
-rw-r--r-- | decoders/xfp/__init__.py | 5 | ||||
-rw-r--r-- | decoders/xfp/pd.py | 2 |
2 files changed, 3 insertions, 4 deletions
diff --git a/decoders/xfp/__init__.py b/decoders/xfp/__init__.py index c4fb008..72f3595 100644 --- a/decoders/xfp/__init__.py +++ b/decoders/xfp/__init__.py @@ -31,9 +31,8 @@ module startup. Other table are either reserved for future expansion, or available for vendor-specific extensions. This decoder supports both lower memory and table 0x01. -The XFP specification is available here: - - ftp://ftp.seagate.com/sff/INF-8077.PDF +Details: +ftp://ftp.seagate.com/sff/INF-8077.PDF (XFP specification) ''' from .pd import Decoder diff --git a/decoders/xfp/pd.py b/decoders/xfp/pd.py index 9bca10b..6b4b7a9 100644 --- a/decoders/xfp/pd.py +++ b/decoders/xfp/pd.py @@ -27,7 +27,7 @@ class Decoder(srd.Decoder): id = 'xfp' name = 'XFP' longname = '10 Gigabit Small Form Factor Pluggable Module (XFP)' - desc = 'Data structure describing display device capabilities.' + desc = 'XFP I²C management interface structures/protocol' license = 'gplv3+' inputs = ['i2c'] outputs = ['xfp'] |