Skip to content
This repository was archived by the owner on Feb 27, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion xoa_driver/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
__version__ = "2.1.1"
__version__ = "2.1.2"
__short_version__ = "2.0"
2 changes: 1 addition & 1 deletion xoa_driver/internals/hli_v1/ports/port_l23/family_i.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ class FamilyI(BasePortL23Genuine):
:type: PcsPma
"""

ser_des: Tuple[SerDes, ...]
serdes: Tuple[SerDes, ...]
"""SerDes index

:type: Tuple[SerDes, ...]
Expand Down
2 changes: 1 addition & 1 deletion xoa_driver/internals/hli_v1/ports/port_l23/family_j.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ class FamilyJ(BasePortL23Genuine):
:type: PcsPma
"""

ser_des: Tuple[SerDes, ...]
serdes: Tuple[SerDes, ...]
"""SerDes index

:type: Tuple[SerDes, ...]
Expand Down
2 changes: 1 addition & 1 deletion xoa_driver/internals/hli_v1/ports/port_l23/family_k.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ class FamilyK(BasePortL23Genuine):
:type: PcsPma
"""

ser_des: Tuple[SerDes, ...]
serdes: Tuple[SerDes, ...]
"""SerDes index

:type: Tuple[SerDes, ...]
Expand Down
2 changes: 1 addition & 1 deletion xoa_driver/internals/hli_v1/ports/port_l23/family_l.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ class FamilyL(BasePortL23Genuine):
:type: PcsPma
"""

ser_des: Tuple[SerDes, ...]
serdes: Tuple[SerDes, ...]
"""SerDes index

:type: Tuple[SerDes, ...]
Expand Down
4 changes: 2 additions & 2 deletions xoa_driver/internals/hli_v1/ports/port_l23/family_l1.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ class FamilyL1(BasePortL23Genuine):
:type: PcsPma
"""

ser_des: Tuple[SerDes, ...]
serdes: Tuple[SerDes, ...]
"""SerDes index

:type: Tuple[SerDes, ...]
Expand All @@ -57,7 +57,7 @@ def __init__(self, conn: "itf.IConnection", module_id: int, port_id: int) -> Non
async def _setup(self) -> Self:
await super()._setup()
self.pcs_pma = PcsPma(self._conn, self)
self.ser_des = tuple(
self.serdes = tuple(
SerDes(self._conn, *self.kind, serdes_xindex=serdes_xindex)
for serdes_xindex in range(self.info.capabilities.serdes_count)
)
Expand Down
4 changes: 2 additions & 2 deletions xoa_driver/internals/hli_v2/ports/port_l23/family_l1.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ def __init__(self, conn: "itf.IConnection", port) -> None:

class FamilyL1(BasePortL23Genuine):
pcs_pma: PcsPma
ser_des: Tuple[SerDes, ...]
serdes: Tuple[SerDes, ...]

def __init__(self, conn: "itf.IConnection", module_id: int, port_id: int) -> None:
super().__init__(conn, module_id, port_id)
Expand All @@ -45,7 +45,7 @@ def __init__(self, conn: "itf.IConnection", module_id: int, port_id: int) -> Non
async def _setup(self) -> Self:
await super()._setup()
self.pcs_pma = PcsPma(self._conn, self)
self.ser_des = tuple(
self.serdes = tuple(
SerDes(self._conn, *self.kind, serdes_xindex=serdes_xindex)
for serdes_xindex in range(self.info.capabilities.serdes_count)
)
Expand Down