diff options
author | Artur Grabowski <art@cvs.openbsd.org> | 2001-04-30 15:05:35 +0000 |
---|---|---|
committer | Artur Grabowski <art@cvs.openbsd.org> | 2001-04-30 15:05:35 +0000 |
commit | fedcbddd566018d446940be83eca7b732982d4e3 (patch) | |
tree | dad271639306bce16c523914ff1e5a1085825495 | |
parent | d58f01f1657515a4bae0070493f2c4f8b7c2e92c (diff) |
Move the hwrpb_primary_init to before configure.
-rw-r--r-- | sys/arch/alpha/alpha/machdep.c | 5 |
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(); } /* |