Date: Tue, 9 Jul 2013 18:15:59 +0000 (UTC) From: Jung-uk Kim <jkim@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r253102 - head/sys/dev/ixgb Message-ID: <201307091815.r69IFxam088417@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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) */
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201307091815.r69IFxam088417>