svn commit: r291650 - head/sys/arm/include
Michal Meloun
mmel at FreeBSD.org
Wed Dec 2 14:24:15 UTC 2015
Author: mmel
Date: Wed Dec 2 14:24:14 2015
New Revision: 291650
URL: https://svnweb.freebsd.org/changeset/base/291650
Log:
ARM: Define PCI_RES_BUS resource for platforms having NEW_PCIB enabled.
Approved by: kib (mentor)
Modified:
head/sys/arm/include/resource.h
Modified: head/sys/arm/include/resource.h
==============================================================================
--- head/sys/arm/include/resource.h Wed Dec 2 14:22:58 2015 (r291649)
+++ head/sys/arm/include/resource.h Wed Dec 2 14:24:14 2015 (r291650)
@@ -42,5 +42,8 @@
#define SYS_RES_MEMORY 3 /* i/o memory */
#define SYS_RES_IOPORT 4 /* i/o ports */
#define SYS_RES_GPIO 5 /* general purpose i/o */
+#ifdef NEW_PCIB
+#define PCI_RES_BUS 6 /* PCI bus numbers */
+#endif
#endif /* !_MACHINE_RESOURCE_H_ */
More information about the svn-src-head
mailing list