svn commit: r305479 - head/sys/dev/pci
Wojciech Macek
wma at FreeBSD.org
Tue Sep 6 15:11:38 UTC 2016
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 <mst at semihalf.com>
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
More information about the svn-src-all
mailing list