Modifications for the new eisaconf.

This commit is contained in:
gibbs 1995-11-05 04:43:22 +00:00
parent da1c8c00f7
commit 25f2593382
3 changed files with 21 additions and 11 deletions

View File

@ -34,7 +34,7 @@
* SUCH DAMAGE.
*
* from: @(#)autoconf.c 7.1 (Berkeley) 5/9/91
* $Id: autoconf.c,v 1.39 1995/09/10 18:57:24 bde Exp $
* $Id: autoconf.c,v 1.40 1995/10/21 00:55:13 phk Exp $
*/
/*
@ -102,6 +102,10 @@ u_char end_mfs_root[] = "MFS Filesystem had better STOP here";
#include <i386/isa/isa_device.h>
#endif
#if NEISA > 0
void eisa_configure();
#endif
#include "pci.h"
#if NPCI > 0
#include <pci/pcivar.h>
@ -174,10 +178,6 @@ configure(dummy)
configure_start();
#if NEISA > 0
eisa_configure();
#endif
#if NCRD > 0
/* Before isa_configure to avoid ISA drivers finding our cards */
pccard_configure();
@ -187,6 +187,10 @@ configure(dummy)
isa_configure();
#endif
#if NEISA > 0
eisa_configure();
#endif
#if NPCI > 0
pci_configure();
#endif

View File

@ -34,7 +34,7 @@
* SUCH DAMAGE.
*
* from: @(#)autoconf.c 7.1 (Berkeley) 5/9/91
* $Id: autoconf.c,v 1.39 1995/09/10 18:57:24 bde Exp $
* $Id: autoconf.c,v 1.40 1995/10/21 00:55:13 phk Exp $
*/
/*
@ -102,6 +102,10 @@ u_char end_mfs_root[] = "MFS Filesystem had better STOP here";
#include <i386/isa/isa_device.h>
#endif
#if NEISA > 0
void eisa_configure();
#endif
#include "pci.h"
#if NPCI > 0
#include <pci/pcivar.h>
@ -174,10 +178,6 @@ configure(dummy)
configure_start();
#if NEISA > 0
eisa_configure();
#endif
#if NCRD > 0
/* Before isa_configure to avoid ISA drivers finding our cards */
pccard_configure();
@ -187,6 +187,10 @@ configure(dummy)
isa_configure();
#endif
#if NEISA > 0
eisa_configure();
#endif
#if NPCI > 0
pci_configure();
#endif

View File

@ -22,7 +22,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
* $Id: devconf.h,v 1.8 1995/02/04 12:47:19 se Exp $
* $Id: devconf.h,v 1.9 1995/05/30 08:00:37 rgrimes Exp $
*/
/*
* devconf.h - machine-dependent device configuration table
@ -64,9 +64,11 @@ struct machdep_devconf {
#define dc_devtype dc_md.mddc_devtype
#define dc_flags dc_md.mddc_flags
#define kdc_isa kdc_parentdata
#define kdc_eisa kdc_parentdata
#define kdc_scsi kdc_parentdata
#include <i386/isa/isa_device.h>
#include <i386/eisa/eisaconf.h>
#include <pci/pcireg.h>
#include <pci/pcivar.h>
#include <scsi/scsi_all.h>