svn commit: r313476 - head/sys/dev/e1000

Andrew Turner andrew at FreeBSD.org
Thu Feb 9 17:48:34 UTC 2017


Author: andrew
Date: Thu Feb  9 17:48:33 2017
New Revision: 313476
URL: https://svnweb.freebsd.org/changeset/base/313476

Log:
  Add support for the Intel 82572EI back to em(4), it seems it was dropped
  when oving to iflib.
  
  Reviewed by:	sbruno
  Sponsored by:	ABT Systems Ltd
  Differential Revision:	https://reviews.freebsd.org/D9511

Modified:
  head/sys/dev/e1000/if_em.c

Modified: head/sys/dev/e1000/if_em.c
==============================================================================
--- head/sys/dev/e1000/if_em.c	Thu Feb  9 17:47:01 2017	(r313475)
+++ head/sys/dev/e1000/if_em.c	Thu Feb  9 17:48:33 2017	(r313476)
@@ -104,6 +104,7 @@ static pci_vendor_info_t em_vendor_info_
 	PVID(0x8086, E1000_DEV_ID_82571EB_QUAD_COPPER_LP, "Intel(R) PRO/1000 Network Connection"),
 	PVID(0x8086, E1000_DEV_ID_82571EB_QUAD_FIBER, "Intel(R) PRO/1000 Network Connection"), 
 	PVID(0x8086, E1000_DEV_ID_82571PT_QUAD_COPPER, "Intel(R) PRO/1000 Network Connection"),
+	PVID(0x8086, E1000_DEV_ID_82572EI,		"Intel(R) PRO/1000 Network Connection"),
 	PVID(0x8086, E1000_DEV_ID_82572EI_COPPER,	"Intel(R) PRO/1000 Network Connection"),
 	PVID(0x8086, E1000_DEV_ID_82572EI_FIBER,	"Intel(R) PRO/1000 Network Connection"), 
 	PVID(0x8086, E1000_DEV_ID_82572EI_SERDES,	"Intel(R) PRO/1000 Network Connection"), 


More information about the svn-src-all mailing list