From owner-svn-src-all@freebsd.org Tue Sep 6 15:11:38 2016 Return-Path: Delivered-To: svn-src-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5E6FEB9691F; Tue, 6 Sep 2016 15:11:38 +0000 (UTC) (envelope-from wma@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::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 2F575B04; Tue, 6 Sep 2016 15:11:38 +0000 (UTC) (envelope-from wma@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u86FBbY5091032; Tue, 6 Sep 2016 15:11:37 GMT (envelope-from wma@FreeBSD.org) Received: (from wma@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u86FBbgs091031; Tue, 6 Sep 2016 15:11:37 GMT (envelope-from wma@FreeBSD.org) Message-Id: <201609061511.u86FBbgs091031@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: wma set sender to wma@FreeBSD.org using -f From: Wojciech Macek Date: Tue, 6 Sep 2016 15:11:37 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r305479 - head/sys/dev/pci X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.23 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: Tue, 06 Sep 2016 15:11:38 -0000 Author: wma Date: Tue Sep 6 15:11:37 2016 New Revision: 305479 URL: https://svnweb.freebsd.org/changeset/base/305479 Log: Import missing enum declaration in pci_host_generic header file Other files including pci_host_generic.h failed to compile due to missing declaration of enum pci_id_type. Obtained from: Semihalf Submitted by: Michal Stanek Sponsored by: Annapurna Labs Reviewed by: wma Differential Revision: https://reviews.freebsd.org/D7561 Modified: head/sys/dev/pci/pci_host_generic.h Modified: head/sys/dev/pci/pci_host_generic.h ============================================================================== --- head/sys/dev/pci/pci_host_generic.h Tue Sep 6 15:06:08 2016 (r305478) +++ head/sys/dev/pci/pci_host_generic.h Tue Sep 6 15:11:37 2016 (r305479) @@ -34,6 +34,8 @@ #ifndef __PCI_HOST_GENERIC_H_ #define __PCI_HOST_GENERIC_H_ +#include "pci_if.h" + #define MAX_RANGES_TUPLES 16 #define MIN_RANGES_TUPLES 2