svn commit: r253102 - head/sys/dev/ixgb

Jung-uk Kim jkim at FreeBSD.org
Tue Jul 9 18:16:00 UTC 2013


Author: jkim
Date: Tue Jul  9 18:15:59 2013
New Revision: 253102
URL: http://svnweb.freebsd.org/changeset/base/253102

Log:
  Remove redundant definitions to appease tinderbox.

Modified:
  head/sys/dev/ixgb/if_ixgb.c
  head/sys/dev/ixgb/ixgb_ids.h

Modified: head/sys/dev/ixgb/if_ixgb.c
==============================================================================
--- head/sys/dev/ixgb/if_ixgb.c	Tue Jul  9 15:20:46 2013	(r253101)
+++ head/sys/dev/ixgb/if_ixgb.c	Tue Jul  9 18:15:59 2013	(r253102)
@@ -72,8 +72,8 @@ char            ixgb_copyright[] = "Copy
 static ixgb_vendor_info_t ixgb_vendor_info_array[] =
 {
 	/* Intel(R) PRO/10000 Network Connection */
-	{INTEL_VENDOR_ID, IXGB_DEVICE_ID_82597EX, PCI_ANY_ID, PCI_ANY_ID, 0},
-	{INTEL_VENDOR_ID, IXGB_DEVICE_ID_82597EX_SR, PCI_ANY_ID, PCI_ANY_ID, 0},
+	{IXGB_VENDOR_ID, IXGB_DEVICE_ID_82597EX, PCI_ANY_ID, PCI_ANY_ID, 0},
+	{IXGB_VENDOR_ID, IXGB_DEVICE_ID_82597EX_SR, PCI_ANY_ID, PCI_ANY_ID, 0},
 	/* required last entry */
 	{0, 0, 0, 0, 0}
 };

Modified: head/sys/dev/ixgb/ixgb_ids.h
==============================================================================
--- head/sys/dev/ixgb/ixgb_ids.h	Tue Jul  9 15:20:46 2013	(r253101)
+++ head/sys/dev/ixgb/ixgb_ids.h	Tue Jul  9 18:15:59 2013	(r253102)
@@ -37,13 +37,9 @@
 #define _IXGB_IDS_H_
 
 /**********************************************************************
-** The Device and Vendor IDs for 10 Gigabit MACs
+** The Device IDs for 10 Gigabit MACs
 **********************************************************************/
 
-#define INTEL_VENDOR_ID         0x8086
-#define INTEL_SUBVENDOR_ID      0x8086
-
-
 #define IXGB_DEVICE_ID_82597EX      0x1048   /* Cibolo A1, -LR (1310nm) */
 #define IXGB_DEVICE_ID_82597EX_SR   0x1A48   /* Cibolo B0, -SR (850nm)  */
 


More information about the svn-src-head mailing list