Module Name:    src
Committed By:   skrll
Date:           Mon Jul 10 09:30:58 UTC 2017

Modified Files:
        src/sys/arch/arm/arm32: pmap.c

Log Message:
No need for '\n' in UVMHIST_LOG


To generate a diff of this commit:
cvs rdiff -u -r1.349 -r1.350 src/sys/arch/arm/arm32/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/arm/arm32/pmap.c
diff -u src/sys/arch/arm/arm32/pmap.c:1.349 src/sys/arch/arm/arm32/pmap.c:1.350
--- src/sys/arch/arm/arm32/pmap.c:1.349	Wed May 24 06:31:07 2017
+++ src/sys/arch/arm/arm32/pmap.c	Mon Jul 10 09:30:58 2017
@@ -1,4 +1,4 @@
-/*	$NetBSD: pmap.c,v 1.349 2017/05/24 06:31:07 skrll Exp $	*/
+/*	$NetBSD: pmap.c,v 1.350 2017/07/10 09:30:58 skrll Exp $	*/
 
 /*
  * Copyright 2003 Wasabi Systems, Inc.
@@ -217,7 +217,7 @@
 
 #include <arm/locore.h>
 
-__KERNEL_RCSID(0, "$NetBSD: pmap.c,v 1.349 2017/05/24 06:31:07 skrll Exp $");
+__KERNEL_RCSID(0, "$NetBSD: pmap.c,v 1.350 2017/07/10 09:30:58 skrll Exp $");
 
 //#define PMAP_DEBUG
 #ifdef PMAP_DEBUG
@@ -3361,7 +3361,7 @@ pmap_enter(pmap_t pm, vaddr_t va, paddr_
 #endif /* !ARM_MMU_EXTENDED */
 
 #ifndef ARM_MMU_EXTENDED
-		UVMHIST_LOG(maphist, "  is_cached %d cs 0x%08x\n",
+		UVMHIST_LOG(maphist, "  is_cached %d cs 0x%08x",
 		    is_cached, pm->pm_cstate.cs_all, 0, 0);
 
 		if (pg != NULL) {

Reply via email to