summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArtur Grabowski <art@cvs.openbsd.org>2001-04-30 15:05:35 +0000
committerArtur Grabowski <art@cvs.openbsd.org>2001-04-30 15:05:35 +0000
commitfedcbddd566018d446940be83eca7b732982d4e3 (patch)
treedad271639306bce16c523914ff1e5a1085825495
parentd58f01f1657515a4bae0070493f2c4f8b7c2e92c (diff)
Move the hwrpb_primary_init to before configure.
-rw-r--r--sys/arch/alpha/alpha/machdep.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/arch/alpha/alpha/machdep.c b/sys/arch/alpha/alpha/machdep.c
index 7497061cbf0..ed9dc952acb 100644
--- a/sys/arch/alpha/alpha/machdep.c
+++ b/sys/arch/alpha/alpha/machdep.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: machdep.c,v 1.42 2001/02/07 07:22:53 art Exp $ */
+/* $OpenBSD: machdep.c,v 1.43 2001/04/30 15:05:34 art Exp $ */
/* $NetBSD: machdep.c,v 1.206 2000/05/23 05:12:54 thorpej Exp $ */
/*-
@@ -1026,13 +1026,14 @@ cpu_startup()
printf("kernel does not support -c; continuing..\n");
#endif
}
- configure();
/*
* Set up the HWPCB so that it's safe to configure secondary
* CPUs.
*/
hwrpb_primary_init();
+
+ configure();
}
/*