We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e4db3d6 commit d1a2e17Copy full SHA for d1a2e17
sonic_platform_base/sonic_xcvr/xcvr_api_factory.py
@@ -96,8 +96,8 @@ def create_xcvr_api(self):
96
mem_map = Sff8636MemMap(codes)
97
xcvr_eeprom = XcvrEeprom(self.reader, self.writer, mem_map)
98
api = Sff8636Api(xcvr_eeprom)
99
- # QSFP+
100
- elif id == 0x0D:
+ # QSFP+ or QSFP
+ elif id == 0x0D or id == 0x0C:
101
revision_compliance = self._get_revision_compliance()
102
if revision_compliance >= 3:
103
codes = Sff8636Codes
0 commit comments