summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTakuya ASADA <syuu@cvs.openbsd.org>2009-12-28 07:18:40 +0000
committerTakuya ASADA <syuu@cvs.openbsd.org>2009-12-28 07:18:40 +0000
commit0b9a72cef0fca7a305a42ba96629b71e20267605 (patch)
treee8412f4eccb8c086a8d3d86633f7c7d780ae8c29
parentb2b08df5c106c5e8cac2811d8df5c66fe96004c3 (diff)
Fix compile error caused from previous commit
-rw-r--r--sys/arch/mips64/mips64/pmap.c3
-rw-r--r--sys/arch/sgi/include/cpu.h3
2 files changed, 3 insertions, 3 deletions
diff --git a/sys/arch/mips64/mips64/pmap.c b/sys/arch/mips64/mips64/pmap.c
index 3d1f6c0bd6e..5c26847c1a0 100644
--- a/sys/arch/mips64/mips64/pmap.c
+++ b/sys/arch/mips64/mips64/pmap.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: pmap.c,v 1.43 2009/12/28 06:55:27 syuu Exp $ */
+/* $OpenBSD: pmap.c,v 1.44 2009/12/28 07:18:39 syuu Exp $ */
/*
* Copyright (c) 2001-2004 Opsycon AB (www.opsycon.se / www.opsycon.com)
@@ -474,7 +474,6 @@ pmap_t
pmap_create()
{
pmap_t pmap;
- vaddr_t va;
int i, s;
extern struct vmspace vmspace0;
diff --git a/sys/arch/sgi/include/cpu.h b/sys/arch/sgi/include/cpu.h
index 56d0188192f..9bfd6a126c6 100644
--- a/sys/arch/sgi/include/cpu.h
+++ b/sys/arch/sgi/include/cpu.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: cpu.h,v 1.6 2009/12/25 21:02:18 miod Exp $ */
+/* $OpenBSD: cpu.h,v 1.7 2009/12/28 07:18:39 syuu Exp $ */
/*-
* Copyright (c) 1992, 1993
* The Regents of the University of California. All rights reserved.
@@ -55,6 +55,7 @@
#endif
#if !defined(_LOCORE)
+struct cpu_info;
void hw_cpu_boot_secondary(struct cpu_info *);
void hw_cpu_hatch(struct cpu_info *);
void hw_cpu_spinup_trampoline(struct cpu_info *);