Module Name:    src
Committed By:   skrll
Date:           Wed Nov  1 21:13:26 UTC 2017

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

Log Message:
Unwrap two lines.  NFC.


To generate a diff of this commit:
cvs rdiff -u -r1.360 -r1.361 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.360 src/sys/arch/arm/arm32/pmap.c:1.361
--- src/sys/arch/arm/arm32/pmap.c:1.360	Wed Nov  1 21:11:44 2017
+++ src/sys/arch/arm/arm32/pmap.c	Wed Nov  1 21:13:26 2017
@@ -1,4 +1,4 @@
-/*	$NetBSD: pmap.c,v 1.360 2017/11/01 21:11:44 skrll Exp $	*/
+/*	$NetBSD: pmap.c,v 1.361 2017/11/01 21:13:26 skrll Exp $	*/
 
 /*
  * Copyright 2003 Wasabi Systems, Inc.
@@ -217,7 +217,7 @@
 
 #include <arm/locore.h>
 
-__KERNEL_RCSID(0, "$NetBSD: pmap.c,v 1.360 2017/11/01 21:11:44 skrll Exp $");
+__KERNEL_RCSID(0, "$NetBSD: pmap.c,v 1.361 2017/11/01 21:13:26 skrll Exp $");
 
 //#define PMAP_DEBUG
 #ifdef PMAP_DEBUG
@@ -7891,8 +7891,7 @@ arm_pmap_alloc_poolpage(int flags)
 	 */
 	if (arm_poolpage_vmfreelist != VM_FREELIST_DEFAULT) {
 		return uvm_pagealloc_strat(NULL, 0, NULL, flags,
-		    UVM_PGA_STRAT_FALLBACK,
-		    arm_poolpage_vmfreelist);
+		    UVM_PGA_STRAT_FALLBACK, arm_poolpage_vmfreelist);
 	}
 
 	return uvm_pagealloc(NULL, 0, NULL, flags);

Reply via email to