Module Name:    src
Committed By:   he
Date:           Mon May 11 16:09:24 UTC 2009

Modified Files:
        src/sys/arch/powerpc/ibm4xx: pmap.c

Log Message:
Follow up the changed prototype of pmap_enter(), flag from int to u_int.


To generate a diff of this commit:
cvs rdiff -u -r1.54 -r1.55 src/sys/arch/powerpc/ibm4xx/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/powerpc/ibm4xx/pmap.c
diff -u src/sys/arch/powerpc/ibm4xx/pmap.c:1.54 src/sys/arch/powerpc/ibm4xx/pmap.c:1.55
--- src/sys/arch/powerpc/ibm4xx/pmap.c:1.54	Wed Mar 18 10:22:34 2009
+++ src/sys/arch/powerpc/ibm4xx/pmap.c	Mon May 11 16:09:24 2009
@@ -1,4 +1,4 @@
-/*	$NetBSD: pmap.c,v 1.54 2009/03/18 10:22:34 cegger Exp $	*/
+/*	$NetBSD: pmap.c,v 1.55 2009/05/11 16:09:24 he Exp $	*/
 
 /*
  * Copyright 2001 Wasabi Systems, Inc.
@@ -67,7 +67,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: pmap.c,v 1.54 2009/03/18 10:22:34 cegger Exp $");
+__KERNEL_RCSID(0, "$NetBSD: pmap.c,v 1.55 2009/05/11 16:09:24 he Exp $");
 
 #include <sys/param.h>
 #include <sys/malloc.h>
@@ -809,7 +809,7 @@
  * Insert physical page at pa into the given pmap at virtual address va.
  */
 int
-pmap_enter(struct pmap *pm, vaddr_t va, paddr_t pa, vm_prot_t prot, int flags)
+pmap_enter(struct pmap *pm, vaddr_t va, paddr_t pa, vm_prot_t prot, u_int flags)
 {
 	int s;
 	u_int tte;

Reply via email to