diff options
author | Artur Grabowski <art@cvs.openbsd.org> | 2001-05-05 22:34:36 +0000 |
---|---|---|
committer | Artur Grabowski <art@cvs.openbsd.org> | 2001-05-05 22:34:36 +0000 |
commit | 72ef934bda205fc59fa2f5466f78d68301505f95 (patch) | |
tree | bae73800529dbab165ac14d49eb97dc0ed1dc685 /sys/arch/sun3/include | |
parent | b1e2e553c94b439302a1b3bb8500e2cc78896e65 (diff) |
Rename configure() to cpu_configure().
Move it from cpu_startup() to main().
Diffstat (limited to 'sys/arch/sun3/include')
-rw-r--r-- | sys/arch/sun3/include/cpu.h | 5 | ||||
-rw-r--r-- | sys/arch/sun3/include/machdep.h | 3 |
2 files changed, 2 insertions, 6 deletions
diff --git a/sys/arch/sun3/include/cpu.h b/sys/arch/sun3/include/cpu.h index 8194c5b979e..664f4e6f15c 100644 --- a/sys/arch/sun3/include/cpu.h +++ b/sys/arch/sun3/include/cpu.h @@ -1,4 +1,4 @@ -/* $OpenBSD: cpu.h,v 1.11 2000/03/02 23:01:45 todd Exp $ */ +/* $OpenBSD: cpu.h,v 1.12 2001/05/05 22:34:21 art Exp $ */ /* $NetBSD: cpu.h,v 1.20 1995/12/21 05:02:10 mycroft Exp $ */ /* @@ -158,9 +158,6 @@ union sun3sir { extern unsigned char cpu_machine_id; -/* autoconf.c */ -void configure __P((void)); - /* dma.c */ long dvma_kvtopa __P((long, int)); diff --git a/sys/arch/sun3/include/machdep.h b/sys/arch/sun3/include/machdep.h index a643dd8e7ec..3a650050df8 100644 --- a/sys/arch/sun3/include/machdep.h +++ b/sys/arch/sun3/include/machdep.h @@ -1,4 +1,4 @@ -/* $OpenBSD: machdep.h,v 1.11 2001/01/03 01:48:07 miod Exp $ */ +/* $OpenBSD: machdep.h,v 1.12 2001/05/05 22:34:22 art Exp $ */ /* * Copyright (c) 1994 Gordon W. Ross @@ -87,7 +87,6 @@ int cachectl __P((int req, caddr_t addr, int len)); void child_return __P((void *)); -void configure __P((void)); void cninit __P((void)); void dumpconf __P((void)); |