Module Name:    src
Committed By:   msaitoh
Date:           Tue Feb 19 02:51:02 UTC 2019

Modified Files:
        src/sys/dev/mii: glxtphy.c

Log Message:
 Fix duplicated LEVEL1_LXT1000_OLD entry. I suspect one of them is
LEVEL1_LXT1000.


To generate a diff of this commit:
cvs rdiff -u -r1.26 -r1.27 src/sys/dev/mii/glxtphy.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/mii/glxtphy.c
diff -u src/sys/dev/mii/glxtphy.c:1.26 src/sys/dev/mii/glxtphy.c:1.27
--- src/sys/dev/mii/glxtphy.c:1.26	Tue Jan 22 03:42:27 2019
+++ src/sys/dev/mii/glxtphy.c	Tue Feb 19 02:51:02 2019
@@ -1,4 +1,4 @@
-/*	$NetBSD: glxtphy.c,v 1.26 2019/01/22 03:42:27 msaitoh Exp $	*/
+/*	$NetBSD: glxtphy.c,v 1.27 2019/02/19 02:51:02 msaitoh Exp $	*/
 
 /*-
  * Copyright (c) 1998, 1999, 2000, 2001 The NetBSD Foundation, Inc.
@@ -59,7 +59,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: glxtphy.c,v 1.26 2019/01/22 03:42:27 msaitoh Exp $");
+__KERNEL_RCSID(0, "$NetBSD: glxtphy.c,v 1.27 2019/02/19 02:51:02 msaitoh Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -94,8 +94,8 @@ static const struct mii_phydesc glxtphys
 	{ MII_OUI_LEVEL1,		MII_MODEL_LEVEL1_LXT1000_OLD,
 	  MII_STR_LEVEL1_LXT1000_OLD },
 
-	{ MII_OUI_LEVEL1,		MII_MODEL_LEVEL1_LXT1000_OLD,
-	  MII_STR_LEVEL1_LXT1000_OLD },
+	{ MII_OUI_LEVEL1,		MII_MODEL_LEVEL1_LXT1000,
+	  MII_STR_LEVEL1_LXT1000 },
 
 	{ 0,				0,
 	  NULL },

Reply via email to