diff options
author | se <se@FreeBSD.org> | 1994-08-31 23:36:56 +0000 |
---|---|---|
committer | se <se@FreeBSD.org> | 1994-08-31 23:36:56 +0000 |
commit | b51d04ad13a8a12bdcf7046f4919db686eac5b3f (patch) | |
tree | 16c0a990548faaf252c5896f798856e431d538f9 /sys | |
parent | 26048972fc64c895d8e4b9369c4613f29f3f58e2 (diff) | |
download | FreeBSD-src-b51d04ad13a8a12bdcf7046f4919db686eac5b3f.zip FreeBSD-src-b51d04ad13a8a12bdcf7046f4919db686eac5b3f.tar.gz |
Reviewed by: Stefan Esser <se>
Submitted by: Wolfgang Stanglmeier <wolf@dentaro.GUN.de>
Added PCI support (call of pci_config(), if NPCI > 0).
Diffstat (limited to 'sys')
-rw-r--r-- | sys/amd64/amd64/autoconf.c | 7 | ||||
-rw-r--r-- | sys/i386/i386/autoconf.c | 7 |
2 files changed, 12 insertions, 2 deletions
diff --git a/sys/amd64/amd64/autoconf.c b/sys/amd64/amd64/autoconf.c index 48ccde0..129d3f60 100644 --- a/sys/amd64/amd64/autoconf.c +++ b/sys/amd64/amd64/autoconf.c @@ -34,7 +34,7 @@ * SUCH DAMAGE. * * from: @(#)autoconf.c 7.1 (Berkeley) 5/9/91 - * $Id: autoconf.c,v 1.12 1994/08/13 03:49:33 wollman Exp $ + * $Id: autoconf.c,v 1.13 1994/08/29 21:47:11 ache Exp $ */ /* @@ -79,6 +79,11 @@ configure() isa_configure(); #endif +#include "pci.h" +#if NPCI > 0 + pci_configure(); +#endif + #if GENERICxxx && !defined(DISKLESS) if ((boothowto & RB_ASKNAME) == 0) setroot(); diff --git a/sys/i386/i386/autoconf.c b/sys/i386/i386/autoconf.c index 48ccde0..129d3f60 100644 --- a/sys/i386/i386/autoconf.c +++ b/sys/i386/i386/autoconf.c @@ -34,7 +34,7 @@ * SUCH DAMAGE. * * from: @(#)autoconf.c 7.1 (Berkeley) 5/9/91 - * $Id: autoconf.c,v 1.12 1994/08/13 03:49:33 wollman Exp $ + * $Id: autoconf.c,v 1.13 1994/08/29 21:47:11 ache Exp $ */ /* @@ -79,6 +79,11 @@ configure() isa_configure(); #endif +#include "pci.h" +#if NPCI > 0 + pci_configure(); +#endif + #if GENERICxxx && !defined(DISKLESS) if ((boothowto & RB_ASKNAME) == 0) setroot(); |