Module Name: src
Committed By: msaitoh
Date: Thu Aug 31 02:48:55 UTC 2017
Modified Files:
src/sys/dev/pci/ixgbe: ixgbe.c
Log Message:
Fix 2500 KX media setting in last commit.
To generate a diff of this commit:
cvs rdiff -u -r1.99 -r1.100 src/sys/dev/pci/ixgbe/ixgbe.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/dev/pci/ixgbe/ixgbe.c
diff -u src/sys/dev/pci/ixgbe/ixgbe.c:1.99 src/sys/dev/pci/ixgbe/ixgbe.c:1.100
--- src/sys/dev/pci/ixgbe/ixgbe.c:1.99 Wed Aug 30 08:49:18 2017
+++ src/sys/dev/pci/ixgbe/ixgbe.c Thu Aug 31 02:48:55 2017
@@ -1,4 +1,4 @@
-/* $NetBSD: ixgbe.c,v 1.99 2017/08/30 08:49:18 msaitoh Exp $ */
+/* $NetBSD: ixgbe.c,v 1.100 2017/08/31 02:48:55 msaitoh Exp $ */
/******************************************************************************
@@ -1392,7 +1392,7 @@ ixgbe_add_media_types(struct adapter *ad
ADD(IFM_1000_KX | IFM_FDX, 0);
}
if (layer & IXGBE_PHYSICAL_LAYER_2500BASE_KX) {
- ADD(IFM_1000_KX, 0);
+ ADD(IFM_2500_KX, 0);
ADD(IFM_2500_KX | IFM_FDX, 0);
}
if (layer & IXGBE_PHYSICAL_LAYER_1000BASE_BX)