From owner-svn-src-head@FreeBSD.ORG Tue Jul 9 18:16:00 2013 Return-Path: Delivered-To: svn-src-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 4F35360D; Tue, 9 Jul 2013 18:16:00 +0000 (UTC) (envelope-from jkim@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 4284611C8; Tue, 9 Jul 2013 18:16:00 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r69IG0WH088420; Tue, 9 Jul 2013 18:16:00 GMT (envelope-from jkim@svn.freebsd.org) Received: (from jkim@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r69IFxam088417; Tue, 9 Jul 2013 18:15:59 GMT (envelope-from jkim@svn.freebsd.org) Message-Id: <201307091815.r69IFxam088417@svn.freebsd.org> From: Jung-uk Kim Date: Tue, 9 Jul 2013 18:15:59 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r253102 - head/sys/dev/ixgb X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Jul 2013 18:16:00 -0000 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) */