diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2011-10-09 17:01:35 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2011-10-09 17:01:35 +0000 |
commit | 2957b789dda5fee3e9d1fb70d7c9e68a8a0f098b (patch) | |
tree | d1278a42ea705deef0e6f29be01ab767a2cb85ab /sys/arch/aviion/dev | |
parent | f69dddbdb4dc8b35eddd78677164d4280092188d (diff) |
Rework secondary processor initialization. cmmu initialization is now
performed much earlier in the processor startup.
No visible change, paves the way for the much important diff three commits
from here.
Diffstat (limited to 'sys/arch/aviion/dev')
-rw-r--r-- | sys/arch/aviion/dev/mainbus.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/arch/aviion/dev/mainbus.c b/sys/arch/aviion/dev/mainbus.c index 0c8047ce701..58a60c4ad21 100644 --- a/sys/arch/aviion/dev/mainbus.c +++ b/sys/arch/aviion/dev/mainbus.c @@ -1,4 +1,4 @@ -/* $OpenBSD: mainbus.c,v 1.6 2010/04/24 18:46:55 miod Exp $ */ +/* $OpenBSD: mainbus.c,v 1.7 2011/10/09 17:01:34 miod Exp $ */ /* * Copyright (c) 1998 Steve Murphree, Jr. * Copyright (c) 2004, Miodrag Vallat. @@ -141,8 +141,8 @@ mainbus_attach(struct device *parent, struct device *self, void *args) #ifdef MULTIPROCESSOR /* - * Let secondary processor initialize further and print their - * configuration information now. + * Let secondary processors initialize further and print + * their configuration information now. */ cpu_setup_secondary_processors(); #endif |