Module Name: src
Committed By: cherry
Date: Thu Aug 11 20:33:20 UTC 2011
Modified Files:
src/sys/arch/x86/x86: cpu.c
Log Message:
Unbreak the build. (conflicting types in function declaration and definition)
Thanks riz@
To generate a diff of this commit:
cvs rdiff -u -r1.91 -r1.92 src/sys/arch/x86/x86/cpu.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/arch/x86/x86/cpu.c
diff -u src/sys/arch/x86/x86/cpu.c:1.91 src/sys/arch/x86/x86/cpu.c:1.92
--- src/sys/arch/x86/x86/cpu.c:1.91 Thu Aug 11 18:11:17 2011
+++ src/sys/arch/x86/x86/cpu.c Thu Aug 11 20:33:20 2011
@@ -1,4 +1,4 @@
-/* $NetBSD: cpu.c,v 1.91 2011/08/11 18:11:17 cherry Exp $ */
+/* $NetBSD: cpu.c,v 1.92 2011/08/11 20:33:20 cherry Exp $ */
/*-
* Copyright (c) 2000, 2006, 2007, 2008 The NetBSD Foundation, Inc.
@@ -62,7 +62,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: cpu.c,v 1.91 2011/08/11 18:11:17 cherry Exp $");
+__KERNEL_RCSID(0, "$NetBSD: cpu.c,v 1.92 2011/08/11 20:33:20 cherry Exp $");
#include "opt_ddb.h"
#include "opt_mpbios.h" /* for MPDEBUG */
@@ -1216,7 +1216,7 @@
*/
void
-cpu_broadcast_halt(struct cpu_info *ci)
+cpu_broadcast_halt(void)
{
x86_broadcast_ipi(X86_IPI_HALT);
}