Module Name:    src
Committed By:   skrll
Date:           Fri Jan  6 08:33:26 UTC 2012

Modified Files:
        src/sys/arch/hppa/hppa: pmap.c

Log Message:
Group the prototypes.


To generate a diff of this commit:
cvs rdiff -u -r1.91 -r1.92 src/sys/arch/hppa/hppa/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/hppa/hppa/pmap.c
diff -u src/sys/arch/hppa/hppa/pmap.c:1.91 src/sys/arch/hppa/hppa/pmap.c:1.92
--- src/sys/arch/hppa/hppa/pmap.c:1.91	Fri Jan  6 08:32:08 2012
+++ src/sys/arch/hppa/hppa/pmap.c	Fri Jan  6 08:33:26 2012
@@ -1,4 +1,4 @@
-/*	$NetBSD: pmap.c,v 1.91 2012/01/06 08:32:08 skrll Exp $	*/
+/*	$NetBSD: pmap.c,v 1.92 2012/01/06 08:33:26 skrll Exp $	*/
 
 /*-
  * Copyright (c) 2001, 2002 The NetBSD Foundation, Inc.
@@ -65,7 +65,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: pmap.c,v 1.91 2012/01/06 08:32:08 skrll Exp $");
+__KERNEL_RCSID(0, "$NetBSD: pmap.c,v 1.92 2012/01/06 08:33:26 skrll Exp $");
 
 #include "opt_cputype.h"
 
@@ -208,11 +208,12 @@ static inline struct pv_entry *pmap_pv_r
     vaddr_t);
 
 static inline void pmap_flush_page(struct vm_page *, bool);
-
-void pmap_copy_page(paddr_t, paddr_t);
+static int pmap_check_alias(struct vm_page *, vaddr_t, pt_entry_t);
 
 static void pmap_page_physload(paddr_t, paddr_t);
 
+void pmap_copy_page(paddr_t, paddr_t);
+
 #ifdef USE_HPT
 static inline struct hpt_entry *pmap_hash(pmap_t, vaddr_t);
 static inline uint32_t pmap_vtag(pmap_t, vaddr_t);
@@ -227,8 +228,6 @@ void pmap_dump_table(pa_space_t, vaddr_t
 void pmap_dump_pv(paddr_t);
 #endif
 
-static int pmap_check_alias(struct vm_page *, vaddr_t, pt_entry_t);
-
 #define	IS_IOPAGE_P(pa)	((pa) >= HPPA_IOBEGIN)
 
 /* un-invert PVF_REF */

Reply via email to