From owner-svn-src-head@FreeBSD.ORG Thu Aug 21 22:42:02 2014 Return-Path: Delivered-To: svn-src-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B7A8EA04; Thu, 21 Aug 2014 22:42:02 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id A3D5F306A; Thu, 21 Aug 2014 22:42:02 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s7LMg2e2033170; Thu, 21 Aug 2014 22:42:02 GMT (envelope-from ian@FreeBSD.org) Received: (from ian@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s7LMg2eR033169; Thu, 21 Aug 2014 22:42:02 GMT (envelope-from ian@FreeBSD.org) Message-Id: <201408212242.s7LMg2eR033169@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: ian set sender to ian@FreeBSD.org using -f From: Ian Lepore Date: Thu, 21 Aug 2014 22:42:02 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r270311 - head/sys/modules/aic7xxx/ahc/ahc_eisa 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.18-1 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: Thu, 21 Aug 2014 22:42:02 -0000 Author: ian Date: Thu Aug 21 22:42:02 2014 New Revision: 270311 URL: http://svnweb.freebsd.org/changeset/base/270311 Log: This module requires pci_if.h, add it to the SRCS list. We haven't noticed that it was missing because eisa has been disabled for a while in -current, but it became apparent when some parallel-build stuff was MFC'd to 10-stable and this module failed to build there. Modified: head/sys/modules/aic7xxx/ahc/ahc_eisa/Makefile Modified: head/sys/modules/aic7xxx/ahc/ahc_eisa/Makefile ============================================================================== --- head/sys/modules/aic7xxx/ahc/ahc_eisa/Makefile Thu Aug 21 22:04:17 2014 (r270310) +++ head/sys/modules/aic7xxx/ahc/ahc_eisa/Makefile Thu Aug 21 22:42:02 2014 (r270311) @@ -5,7 +5,7 @@ KMOD= ahc_eisa SRCS= ahc_eisa.c -SRCS+= device_if.h bus_if.h eisa_if.h +SRCS+= device_if.h bus_if.h eisa_if.h pci_if.h SRCS+= opt_scsi.h opt_cam.h opt_aic7xxx.h CFLAGS+= -I${.CURDIR}/../../../../dev/aic7xxx -I..