Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/dev/pci/ixgbe Fix typo. This code is not used yet.



details:   https://anonhg.NetBSD.org/src/rev/79197a8e3b8e
branches:  trunk
changeset: 451206:79197a8e3b8e
user:      msaitoh <msaitoh%NetBSD.org@localhost>
date:      Fri May 10 02:56:08 2019 +0000

description:
Fix typo. This code is not used yet.

diffstat:

 sys/dev/pci/ixgbe/ixgbe.c |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (18 lines):

diff -r 8ea69efdad65 -r 79197a8e3b8e sys/dev/pci/ixgbe/ixgbe.c
--- a/sys/dev/pci/ixgbe/ixgbe.c Thu May 09 23:34:51 2019 +0000
+++ b/sys/dev/pci/ixgbe/ixgbe.c Fri May 10 02:56:08 2019 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: ixgbe.c,v 1.179 2019/03/18 11:38:03 msaitoh Exp $ */
+/* $NetBSD: ixgbe.c,v 1.180 2019/05/10 02:56:08 msaitoh Exp $ */
 
 /******************************************************************************
 
@@ -1445,7 +1445,7 @@
                ADD(IFM_10G_KR | IFM_FDX, 0);
        }
        if (layer & IXGBE_PHYSICAL_LAYER_10GBASE_KX4) {
-               ADD(AIFM_10G_KX4 | IFM_FDX, 0);
+               ADD(IFM_10G_KX4 | IFM_FDX, 0);
        }
 #else
        if (layer & IXGBE_PHYSICAL_LAYER_10GBASE_KR) {



Home | Main Index | Thread Index | Old Index