diff --git a/sys/amd64/amd64/autoconf.c b/sys/amd64/amd64/autoconf.c index 48ccde0a292a..129d3f6035ac 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 48ccde0a292a..129d3f6035ac 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();