Module Name: src
Committed By: tsutsui
Date: Sat Apr 25 15:32:30 UTC 2009
Modified Files:
src/sys/arch/sun3/sun3x: pmap.c
Log Message:
Remove an extra whitespace.
To generate a diff of this commit:
cvs rdiff -u -r1.104 -r1.105 src/sys/arch/sun3/sun3x/pmap.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/sun3/sun3x/pmap.c
diff -u src/sys/arch/sun3/sun3x/pmap.c:1.104 src/sys/arch/sun3/sun3x/pmap.c:1.105
--- src/sys/arch/sun3/sun3x/pmap.c:1.104 Tue Apr 21 21:30:00 2009
+++ src/sys/arch/sun3/sun3x/pmap.c Sat Apr 25 15:32:30 2009
@@ -1,4 +1,4 @@
-/* $NetBSD: pmap.c,v 1.104 2009/04/21 21:30:00 cegger Exp $ */
+/* $NetBSD: pmap.c,v 1.105 2009/04/25 15:32:30 tsutsui Exp $ */
/*-
* Copyright (c) 1996, 1997 The NetBSD Foundation, Inc.
@@ -105,7 +105,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: pmap.c,v 1.104 2009/04/21 21:30:00 cegger Exp $");
+__KERNEL_RCSID(0, "$NetBSD: pmap.c,v 1.105 2009/04/25 15:32:30 tsutsui Exp $");
#include "opt_ddb.h"
#include "opt_pmap_debug.h"
@@ -2475,7 +2475,7 @@
pmap_kenter_pa(srcva, srcpa, VM_PROT_READ);
pmap_kenter_pa(dstva, dstpa, VM_PROT_READ | VM_PROT_WRITE);
- /* Hand-optimized version of memcpy( dst, src, PAGE_SIZE) */
+ /* Hand-optimized version of memcpy(dst, src, PAGE_SIZE) */
copypage((char *)srcva, (char *)dstva);
pmap_kremove(srcva, PAGE_SIZE);