Reviewed by: Doug Rabson
Submitted by: nsouch root_bus_configure() call to initialize new bus arch in i386 env.
This commit is contained in:
parent
8afa373cc6
commit
e04d3375b8
@ -34,7 +34,7 @@
|
||||
* SUCH DAMAGE.
|
||||
*
|
||||
* from: @(#)autoconf.c 7.1 (Berkeley) 5/9/91
|
||||
* $Id: autoconf.c,v 1.102 1998/07/19 11:12:14 jkh Exp $
|
||||
* $Id: autoconf.c,v 1.103 1998/08/23 14:17:52 des Exp $
|
||||
*/
|
||||
|
||||
/*
|
||||
@ -103,6 +103,8 @@
|
||||
#include <scsi/scsiconf.h>
|
||||
#endif
|
||||
|
||||
#include <sys/bus.h>
|
||||
|
||||
static void configure __P((void *));
|
||||
SYSINIT(configure, SI_SUB_CONFIGURE, SI_ORDER_FIRST, configure, NULL)
|
||||
|
||||
@ -240,6 +242,9 @@ configure(dummy)
|
||||
isa_configure();
|
||||
#endif
|
||||
|
||||
/* initialize new bus architecture */
|
||||
root_bus_configure();
|
||||
|
||||
/*
|
||||
* Now we're ready to handle (pending) interrupts.
|
||||
* XXX this is slightly misplaced.
|
||||
|
@ -34,7 +34,7 @@
|
||||
* SUCH DAMAGE.
|
||||
*
|
||||
* from: @(#)autoconf.c 7.1 (Berkeley) 5/9/91
|
||||
* $Id: autoconf.c,v 1.102 1998/07/19 11:12:14 jkh Exp $
|
||||
* $Id: autoconf.c,v 1.103 1998/08/23 14:17:52 des Exp $
|
||||
*/
|
||||
|
||||
/*
|
||||
@ -103,6 +103,8 @@
|
||||
#include <scsi/scsiconf.h>
|
||||
#endif
|
||||
|
||||
#include <sys/bus.h>
|
||||
|
||||
static void configure __P((void *));
|
||||
SYSINIT(configure, SI_SUB_CONFIGURE, SI_ORDER_FIRST, configure, NULL)
|
||||
|
||||
@ -240,6 +242,9 @@ configure(dummy)
|
||||
isa_configure();
|
||||
#endif
|
||||
|
||||
/* initialize new bus architecture */
|
||||
root_bus_configure();
|
||||
|
||||
/*
|
||||
* Now we're ready to handle (pending) interrupts.
|
||||
* XXX this is slightly misplaced.
|
||||
|
Loading…
Reference in New Issue
Block a user