Module Name: src
Committed By: skrll
Date: Mon May 21 21:15:39 UTC 2012
Modified Files:
src/sys/arch/hp700/dev: cpu.c
Log Message:
Unwrap a line.
To generate a diff of this commit:
cvs rdiff -u -r1.23 -r1.24 src/sys/arch/hp700/dev/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/hp700/dev/cpu.c
diff -u src/sys/arch/hp700/dev/cpu.c:1.23 src/sys/arch/hp700/dev/cpu.c:1.24
--- src/sys/arch/hp700/dev/cpu.c:1.23 Fri Apr 6 12:21:58 2012
+++ src/sys/arch/hp700/dev/cpu.c Mon May 21 21:15:39 2012
@@ -1,4 +1,4 @@
-/* $NetBSD: cpu.c,v 1.23 2012/04/06 12:21:58 skrll Exp $ */
+/* $NetBSD: cpu.c,v 1.24 2012/05/21 21:15:39 skrll Exp $ */
/* $OpenBSD: cpu.c,v 1.29 2009/02/08 18:33:28 miod Exp $ */
@@ -29,7 +29,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: cpu.c,v 1.23 2012/04/06 12:21:58 skrll Exp $");
+__KERNEL_RCSID(0, "$NetBSD: cpu.c,v 1.24 2012/05/21 21:15:39 skrll Exp $");
#include "opt_multiprocessor.h"
@@ -168,8 +168,7 @@ cpuattach(device_t parent, device_t self
/* Allocate stack for spin up and FPU emulation. */
TAILQ_INIT(&mlist);
- error = uvm_pglistalloc(PAGE_SIZE, 0, -1L, PAGE_SIZE, 0, &mlist, 1,
- 0);
+ error = uvm_pglistalloc(PAGE_SIZE, 0, -1L, PAGE_SIZE, 0, &mlist, 1, 0);
if (error) {
aprint_error(": unable to allocate CPU stack!\n");