svn commit: r188737 - head/sys/dev/mxge

Andrew Gallatin gallatin at FreeBSD.org
Tue Feb 17 14:25:20 PST 2009


Author: gallatin
Date: Tue Feb 17 22:25:19 2009
New Revision: 188737
URL: http://svn.freebsd.org/changeset/base/188737

Log:
  Fix cut/paste error in previous commit and use the
  correct value for SFP+ reserved media type.
  
  MFC after:  1 week

Modified:
  head/sys/dev/mxge/if_mxge.c

Modified: head/sys/dev/mxge/if_mxge.c
==============================================================================
--- head/sys/dev/mxge/if_mxge.c	Tue Feb 17 22:15:58 2009	(r188736)
+++ head/sys/dev/mxge/if_mxge.c	Tue Feb 17 22:25:19 2009	(r188737)
@@ -2535,7 +2535,7 @@ static struct mxge_media_type mxge_xfp_m
 };
 static struct mxge_media_type mxge_sfp_media_types[] =
 {
-	{0,		(1 << 0),	"Reserved"},
+	{0,		(1 << 7),	"Reserved"},
 	{IFM_10G_LRM,	(1 << 6),	"10GBASE-LRM"},
 	{IFM_10G_LR, 	(1 << 5),	"10GBASE-LR"},
 	{IFM_10G_SR,	(1 << 4),	"10GBASE-SR"}


More information about the svn-src-head mailing list