svn commit: r341035 - head/sys/dev/sfxge/common

Andrew Rybchenko arybchik at FreeBSD.org
Tue Nov 27 12:22:30 UTC 2018


Author: arybchik
Date: Tue Nov 27 12:22:25 2018
New Revision: 341035
URL: https://svnweb.freebsd.org/changeset/base/341035

Log:
  sfxge(4): add Medford2 support to MON module
  
  Submitted by:   Andy Moreton <amoreton at solarflare.com>
  Sponsored by:   Solarflare Communications, Inc.
  Differential Revision:  https://reviews.freebsd.org/D18157

Modified:
  head/sys/dev/sfxge/common/mcdi_mon.c

Modified: head/sys/dev/sfxge/common/mcdi_mon.c
==============================================================================
--- head/sys/dev/sfxge/common/mcdi_mon.c	Tue Nov 27 12:22:14 2018	(r341034)
+++ head/sys/dev/sfxge/common/mcdi_mon.c	Tue Nov 27 12:22:25 2018	(r341035)
@@ -504,6 +504,11 @@ mcdi_mon_cfg_build(
 		encp->enc_mon_type = EFX_MON_SFC92X0;
 		break;
 #endif
+#if EFSYS_OPT_MEDFORD2
+	case EFX_FAMILY_MEDFORD2:
+		encp->enc_mon_type = EFX_MON_SFC92X0;
+		break;
+#endif
 	default:
 		rc = EINVAL;
 		goto fail1;


More information about the svn-src-all mailing list