Source-Changes-HG archive

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

[src/trunk]: src/sys/arch/hppa/hppa Group the prototypes.



details:   https://anonhg.NetBSD.org/src/rev/61a0219736c2
branches:  trunk
changeset: 772495:61a0219736c2
user:      skrll <skrll%NetBSD.org@localhost>
date:      Fri Jan 06 08:33:26 2012 +0000

description:
Group the prototypes.

diffstat:

 sys/arch/hppa/hppa/pmap.c |  11 +++++------
 1 files changed, 5 insertions(+), 6 deletions(-)

diffs (42 lines):

diff -r a95e9c07efc4 -r 61a0219736c2 sys/arch/hppa/hppa/pmap.c
--- a/sys/arch/hppa/hppa/pmap.c Fri Jan 06 08:32:08 2012 +0000
+++ b/sys/arch/hppa/hppa/pmap.c Fri Jan 06 08:33:26 2012 +0000
@@ -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 @@
     vaddr_t);
 
 static inline void pmap_flush_page(struct vm_page *, bool);
+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);
 
-static void pmap_page_physload(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_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 */



Home | Main Index | Thread Index | Old Index