summaryrefslogtreecommitdiffstats
path: root/sys/i386
diff options
context:
space:
mode:
authorbde <bde@FreeBSD.org>1995-12-03 17:51:36 +0000
committerbde <bde@FreeBSD.org>1995-12-03 17:51:36 +0000
commit7133041bc9c38e2111cdd443cd1631d59bd84411 (patch)
tree7f1d24f10a35e6f7752422fc7b6bb1698881c688 /sys/i386
parentf90d109410ad152aebf7035b6396a77f3a6cd7fd (diff)
downloadFreeBSD-src-7133041bc9c38e2111cdd443cd1631d59bd84411.zip
FreeBSD-src-7133041bc9c38e2111cdd443cd1631d59bd84411.tar.gz
Staticized.
Completed function declarations and added prototypes. Cleaned up prototypes. Cleaned up #includes. Removed unused variable `dkn'.
Diffstat (limited to 'sys/i386')
-rw-r--r--sys/i386/i386/autoconf.c82
1 files changed, 37 insertions, 45 deletions
diff --git a/sys/i386/i386/autoconf.c b/sys/i386/i386/autoconf.c
index 8acbe10..2437fcb 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.42 1995/11/20 12:09:54 phk Exp $
+ * $Id: autoconf.c,v 1.43 1995/11/28 03:15:53 peter Exp $
*/
/*
@@ -53,27 +53,39 @@
#include <sys/dmap.h>
#include <sys/reboot.h>
#include <sys/kernel.h>
-#include <sys/mount.h> /* mountrootvfsops, struct vfsops*/
+#include <sys/mount.h>
#include <machine/cons.h>
#include <machine/md_var.h>
#include <machine/pte.h>
-static void configure __P((void *));
-SYSINIT(configure, SI_SUB_CONFIGURE, SI_ORDER_FIRST, configure, NULL)
+#include "isa.h"
+#if NISA > 0
+#include <i386/isa/isa_device.h>
+#endif
-int find_cdrom_root __P((void *));
-void configure_start __P((void));
-void configure_finish __P((void));
+#include "eisa.h"
+#if NEISA > 0
+#include <i386/eisa/eisaconf.h>
+#endif
-static void setroot(void);
+#include "pci.h"
+#if NPCI > 0
+#include <pci/pcivar.h>
+#endif
-/*
- * The following several variables are related to
- * the configuration process, and are used in initializing
- * the machine.
- */
-int dkn; /* number of iostat dk numbers assigned so far */
+#include "crd.h"
+#if NCRD > 0
+#include <pccard/driver.h>
+#endif
+
+#include "scbus.h"
+#if NSCBUS > 0
+#include <scsi/scsiconf.h>
+#endif
+
+static void configure __P((void *));
+SYSINIT(configure, SI_SUB_CONFIGURE, SI_ORDER_FIRST, configure, NULL)
#ifdef MFS_ROOT
extern struct vfsops mfs_vfsops;
@@ -85,33 +97,13 @@ extern struct vfsops ufs_vfsops;
extern struct vfsops lfs_vfsops;
#endif
#ifdef NFS
-int nfs_mountroot __P((void *));
+extern int nfs_mountroot __P((void *));
#endif
#ifdef CD9660
-int cd9660_mountroot __P((void *));
+extern int cd9660_mountroot __P((void *));
#endif
#ifdef MSDOSFS
-int msdosfs_mountroot __P((void *));
-#endif
-
-#include "eisa.h"
-#include "isa.h"
-#if NISA > 0
- #include <i386/isa/isa_device.h>
-#endif
-
-#if NEISA > 0
-void eisa_configure();
-#endif
-
-#include "pci.h"
-#if NPCI > 0
- #include <pci/pcivar.h>
-#endif
-
-#include "crd.h"
-#if NCRD > 0
-void pccard_configure();
+extern int msdosfs_mountroot __P((void *));
#endif
#ifdef CD9660
@@ -127,7 +119,12 @@ static struct {
{ 0, 0}
};
-int
+static void configure_finish __P((void));
+static void configure_start __P((void));
+static int find_cdrom_root __P((void *));
+static void setroot __P((void));
+
+static int
find_cdrom_root(dummy)
void *dummy;
{
@@ -145,12 +142,7 @@ find_cdrom_root(dummy)
}
#endif /* CD9660 */
-#include "scbus.h"
-#if NSCBUS > 0
- #include <scsi/scsiconf.h>
-#endif
-
-void
+static void
configure_start()
{
#if NSCBUS > 0
@@ -158,7 +150,7 @@ configure_start()
#endif
}
-void
+static void
configure_finish()
{
#if NSCBUS > 0
OpenPOWER on IntegriCloud