diff options
author | 2004-10-23 08:21:26 +0000 | |
---|---|---|
committer | 2004-10-23 08:21:26 +0000 | |
commit | c9e42332f66f87581e2e6b7a64f377dcb00ef2d7 (patch) | |
tree | 1b65fc6e5eb1802ac848ab5672c233825fdd7932 | |
parent | add missing braces, noticed by mcbride@ (diff) | |
download | wireguard-openbsd-c9e42332f66f87581e2e6b7a64f377dcb00ef2d7.tar.xz wireguard-openbsd-c9e42332f66f87581e2e6b7a64f377dcb00ef2d7.zip |
configure() -> cpu_configure()
ok grange@
-rw-r--r-- | sys/arch/amd64/amd64/autoconf.c | 4 | ||||
-rw-r--r-- | sys/arch/mvmeppc/mvmeppc/autoconf.c | 6 | ||||
-rw-r--r-- | sys/arch/sgi/sgi/autoconf.c | 5 | ||||
-rw-r--r-- | sys/arch/sparc64/sparc64/autoconf.c | 4 |
4 files changed, 9 insertions, 10 deletions
diff --git a/sys/arch/amd64/amd64/autoconf.c b/sys/arch/amd64/amd64/autoconf.c index 86ba4444e62..bb4460b45e9 100644 --- a/sys/arch/amd64/amd64/autoconf.c +++ b/sys/arch/amd64/amd64/autoconf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: autoconf.c,v 1.6 2004/02/27 23:45:23 deraadt Exp $ */ +/* $OpenBSD: autoconf.c,v 1.7 2004/10/23 08:21:26 mjc Exp $ */ /* $NetBSD: autoconf.c,v 1.1 2003/04/26 18:39:26 fvdl Exp $ */ /*- @@ -42,7 +42,7 @@ /* * Setup the system to run on the current machine. * - * Configure() is called at boot time and initializes the vba + * cpu_configure() is called at boot time and initializes the vba * device tables and the memory controller monitoring. Available * devices are determined (from possibilities mentioned in ioconf.c), * and the drivers are initialized. diff --git a/sys/arch/mvmeppc/mvmeppc/autoconf.c b/sys/arch/mvmeppc/mvmeppc/autoconf.c index 73ac343a9f5..21ae45f0d25 100644 --- a/sys/arch/mvmeppc/mvmeppc/autoconf.c +++ b/sys/arch/mvmeppc/mvmeppc/autoconf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: autoconf.c,v 1.9 2004/01/29 21:30:02 miod Exp $ */ +/* $OpenBSD: autoconf.c,v 1.10 2004/10/23 08:21:27 mjc Exp $ */ /* * Copyright (c) 1996, 1997 Per Fogelstrom * Copyright (c) 1995 Theo de Raadt @@ -37,13 +37,13 @@ * from: Utah Hdr: autoconf.c 1.31 91/01/21 * * from: @(#)autoconf.c 8.1 (Berkeley) 6/10/93 - * $Id: autoconf.c,v 1.9 2004/01/29 21:30:02 miod Exp $ + * $Id: autoconf.c,v 1.10 2004/10/23 08:21:27 mjc Exp $ */ /* * Setup the system to run on the current machine. * - * Configure() is called at boot time. Available + * cpu_configure() is called at boot time. Available * devices are determined (from possibilities mentioned in ioconf.c), * and the drivers are initialized. */ diff --git a/sys/arch/sgi/sgi/autoconf.c b/sys/arch/sgi/sgi/autoconf.c index 0c767364f54..2c0bf898bb1 100644 --- a/sys/arch/sgi/sgi/autoconf.c +++ b/sys/arch/sgi/sgi/autoconf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: autoconf.c,v 1.7 2004/10/20 12:49:15 pefo Exp $ */ +/* $OpenBSD: autoconf.c,v 1.8 2004/10/23 08:21:27 mjc Exp $ */ /* * Copyright (c) 1996 Per Fogelstrom * Copyright (c) 1995 Theo de Raadt @@ -42,7 +42,7 @@ /* * Setup the system to run on the current machine. * - * Configure() is called at boot time. Available + * cpu_configure() is called at boot time. Available * devices are determined (from possibilities mentioned in ioconf.c), * and the drivers are initialized. */ @@ -61,7 +61,6 @@ struct device *parsedisk(char *, int, int, dev_t *); void disk_configure(void); void rootconf(void); -void configure(void); void swapconf(void); extern void dumpconf(void); static int findblkmajor(struct device *); diff --git a/sys/arch/sparc64/sparc64/autoconf.c b/sys/arch/sparc64/sparc64/autoconf.c index 51ea4f24fda..10d98b86eaf 100644 --- a/sys/arch/sparc64/sparc64/autoconf.c +++ b/sys/arch/sparc64/sparc64/autoconf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: autoconf.c,v 1.35 2004/09/28 15:15:50 jason Exp $ */ +/* $OpenBSD: autoconf.c,v 1.36 2004/10/23 08:21:27 mjc Exp $ */ /* $NetBSD: autoconf.c,v 1.51 2001/07/24 19:32:11 eeh Exp $ */ /* @@ -990,7 +990,7 @@ mainbus_match(parent, cf, aux) /* * Attach the mainbus. * - * Our main job is to attach the CPU (the root node we got in configure()) + * Our main job is to attach the CPU (the root node we got in cpu_configure()) * and iterate down the list of `mainbus devices' (children of that node). * We also record the `node id' of the default frame buffer, if any. */ |