Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 35178
b: refs/heads/master
c: 0fe198a
h: refs/heads/master
v: v3
  • Loading branch information
Manasi Deval authored and Auke Kok committed Aug 16, 2006
1 parent dd7fac2 commit eb1ae67
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 1 deletion.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: dc335d9735220b3a9ece5ec2d95864b1e8ff06a0
refs/heads/master: 0fe198a5e10229b269624a18bbd390001a8d3476
11 changes: 11 additions & 0 deletions trunk/drivers/net/ixgb/ixgb_hw.c
Original file line number Diff line number Diff line change
Expand Up @@ -236,6 +236,17 @@ ixgb_identify_phy(struct ixgb_hw *hw)
DEBUGOUT("Identified G6104 optics\n");
phy_type = ixgb_phy_type_g6104;
break;
case IXGB_DEVICE_ID_82597EX_CX4:
DEBUGOUT("Identified CX4\n");
xpak_vendor = ixgb_identify_xpak_vendor(hw);
if (xpak_vendor == ixgb_xpak_vendor_intel) {
DEBUGOUT("Identified TXN17201 optics\n");
phy_type = ixgb_phy_type_txn17201;
} else {
DEBUGOUT("Identified G6005 optics\n");
phy_type = ixgb_phy_type_g6005;
}
break;
default:
DEBUGOUT("Unknown physical layer module\n");
phy_type = ixgb_phy_type_unknown;
Expand Down
1 change: 1 addition & 0 deletions trunk/drivers/net/ixgb/ixgb_ids.h
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@

#define IXGB_DEVICE_ID_82597EX_CX4 0x109E
#define IXGB_SUBDEVICE_ID_A00C 0xA00C
#define IXGB_SUBDEVICE_ID_A01C 0xA01C

#endif /* #ifndef _IXGB_IDS_H_ */
/* End of File */

0 comments on commit eb1ae67

Please sign in to comment.