From 2b9fc9390f1e7c36db333d2fc4521466d8ed5256 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stefan=20E=C3=9Fer?= Date: Wed, 31 Aug 1994 23:36:56 +0000 Subject: [PATCH] Reviewed by: Stefan Esser Submitted by: Wolfgang Stanglmeier Added PCI support (call of pci_config(), if NPCI > 0). --- sys/amd64/amd64/autoconf.c | 7 ++++++- 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 48ccde0a292..129d3f6035a 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 48ccde0a292..129d3f6035a 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();