summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorNiklas Hallqvist <niklas@cvs.openbsd.org>1997-10-02 19:54:15 +0000
committerNiklas Hallqvist <niklas@cvs.openbsd.org>1997-10-02 19:54:15 +0000
commit9f018ca07716015764c78e5aada9241ef4466edd (patch)
treed435dae14dbd46ae67011b34a011659bba2accd2 /sys
parent1e41458953c2a6a247c7f575e5e8f6c140b7f18a (diff)
dumpconf after swapconf, and remove some swedish
Diffstat (limited to 'sys')
-rw-r--r--sys/arch/vax/vax/autoconf.c12
1 files changed, 7 insertions, 5 deletions
diff --git a/sys/arch/vax/vax/autoconf.c b/sys/arch/vax/vax/autoconf.c
index 8a025b5c3e1..ad349c2e281 100644
--- a/sys/arch/vax/vax/autoconf.c
+++ b/sys/arch/vax/vax/autoconf.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: autoconf.c,v 1.8 1997/09/10 12:04:42 maja Exp $ */
+/* $OpenBSD: autoconf.c,v 1.9 1997/10/02 19:54:14 niklas Exp $ */
/* $NetBSD: autoconf.c,v 1.25 1997/03/22 12:51:00 ragge Exp $ */
/*
@@ -81,6 +81,7 @@ configure()
* parameter based on device(s) used.
*/
swapconf();
+ dumpconf();
cold = 0;
mtpr(GC_CCF, PR_TXDB); /* Clear cold start flag in cpu */
}
@@ -90,13 +91,14 @@ int backplane_match __P((struct device *, void *, void *));
void backplane_attach __P((struct device *, struct device *, void *));
int
-printut(aux, hej)
+printut(aux, msg)
void *aux;
- const char *hej;
+ const char *msg;
{
struct bp_conf *bp = aux;
- if (hej)
- printf("printut %s %s %d\n",hej, bp->type, bp->num);
+
+ if (msg)
+ printf("printut %s %s %d\n", msg, bp->type, bp->num);
return (UNSUPP);
}