Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/uebayasi-xip]: src/sys/uvm Style.



details:   https://anonhg.NetBSD.org/src/rev/d8df6b5c345c
branches:  uebayasi-xip
changeset: 751833:d8df6b5c345c
user:      uebayasi <uebayasi%NetBSD.org@localhost>
date:      Thu Nov 04 11:57:49 2010 +0000

description:
Style.

diffstat:

 sys/uvm/uvm_page.c |  10 ++++------
 1 files changed, 4 insertions(+), 6 deletions(-)

diffs (38 lines):

diff -r 2fad8560c319 -r d8df6b5c345c sys/uvm/uvm_page.c
--- a/sys/uvm/uvm_page.c        Thu Nov 04 08:47:36 2010 +0000
+++ b/sys/uvm/uvm_page.c        Thu Nov 04 11:57:49 2010 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: uvm_page.c,v 1.153.2.59 2010/11/04 08:47:38 uebayasi Exp $     */
+/*     $NetBSD: uvm_page.c,v 1.153.2.60 2010/11/04 11:57:49 uebayasi Exp $     */
 
 /*
  * Copyright (c) 2010 The NetBSD Foundation, Inc.
@@ -97,7 +97,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: uvm_page.c,v 1.153.2.59 2010/11/04 08:47:38 uebayasi Exp $");
+__KERNEL_RCSID(0, "$NetBSD: uvm_page.c,v 1.153.2.60 2010/11/04 11:57:49 uebayasi Exp $");
 
 #include "opt_ddb.h"
 #include "opt_uvmhist.h"
@@ -2208,8 +2208,7 @@
 uvm_pageismanaged(paddr_t pa)
 {
 
-       return
-           (vm_physseg_find(atop(pa), NULL) != -1);
+       return vm_physseg_find(atop(pa), NULL) != -1;
 }
 
 /*
@@ -2221,8 +2220,7 @@
 uvm_pageismanaged_device(paddr_t pa)
 {
 
-       return
-           (vm_physseg_find_device(atop(pa), NULL) != -1);
+       return vm_physseg_find_device(atop(pa), NULL) != -1;
 }
 
 /*



Home | Main Index | Thread Index | Old Index