From owner-svn-src-all@FreeBSD.ORG Fri Nov 14 01:56:11 2008 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C2728106564A; Fri, 14 Nov 2008 01:56:11 +0000 (UTC) (envelope-from ps@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id A93598FC0C; Fri, 14 Nov 2008 01:56:11 +0000 (UTC) (envelope-from ps@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id mAE1uBWD075394; Fri, 14 Nov 2008 01:56:11 GMT (envelope-from ps@svn.freebsd.org) Received: (from ps@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id mAE1uB0S075392; Fri, 14 Nov 2008 01:56:11 GMT (envelope-from ps@svn.freebsd.org) Message-Id: <200811140156.mAE1uB0S075392@svn.freebsd.org> From: Paul Saab Date: Fri, 14 Nov 2008 01:56:11 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r184950 - in head/sys/modules/cxgb: iw_cxgb toecore X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Nov 2008 01:56:11 -0000 Author: ps Date: Fri Nov 14 01:56:11 2008 New Revision: 184950 URL: http://svn.freebsd.org/changeset/base/184950 Log: Fix world Approved by: kmacy Modified: head/sys/modules/cxgb/iw_cxgb/Makefile head/sys/modules/cxgb/toecore/Makefile Modified: head/sys/modules/cxgb/iw_cxgb/Makefile ============================================================================== --- head/sys/modules/cxgb/iw_cxgb/Makefile Fri Nov 14 01:53:10 2008 (r184949) +++ head/sys/modules/cxgb/iw_cxgb/Makefile Fri Nov 14 01:56:11 2008 (r184950) @@ -7,7 +7,7 @@ KMOD= iw_cxgb SRCS= iw_cxgb.c iw_cxgb_cm.c iw_cxgb_hal.c SRCS+= iw_cxgb_provider.c iw_cxgb_qp.c iw_cxgb_resource.c SRCS+= iw_cxgb_ev.c iw_cxgb_mem.c iw_cxgb_dbg.c iw_cxgb_cq.c -SRCS+= bus_if.h device_if.h opt_sched.h pci_if.h pcib_if.h opt_ktr.h +SRCS+= bus_if.h device_if.h opt_sched.h pci_if.h pcib_if.h opt_ktr.h opt_inet.h CFLAGS+= -g -I${CXGB} #CFLAGS+= -DDEBUG Modified: head/sys/modules/cxgb/toecore/Makefile ============================================================================== --- head/sys/modules/cxgb/toecore/Makefile Fri Nov 14 01:53:10 2008 (r184949) +++ head/sys/modules/cxgb/toecore/Makefile Fri Nov 14 01:56:11 2008 (r184950) @@ -5,7 +5,7 @@ CXGB = ${.CURDIR}/../../../dev/cxgb KMOD= toecore SRCS= toedev.c -SRCS+= device_if.h bus_if.h pci_if.h opt_sched.h +SRCS+= device_if.h bus_if.h pci_if.h opt_sched.h opt_inet.h CFLAGS+= -g -I${CXGB} .include