Source-Changes-HG archive

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

[src/trunk]: src/sys/arch more psize_t physmem fallout. remove conflicting ty...



details:   https://anonhg.NetBSD.org/src/rev/1f302e8edb0f
branches:  trunk
changeset: 819928:1f302e8edb0f
user:      maya <maya%NetBSD.org@localhost>
date:      Fri Dec 23 10:48:12 2016 +0000

description:
more psize_t physmem fallout. remove conflicting types.

diffstat:

 sys/arch/news68k/news68k/pmap_bootstrap.c |  6 +++---
 sys/arch/next68k/next68k/pmap_bootstrap.c |  6 +++---
 2 files changed, 6 insertions(+), 6 deletions(-)

diffs (54 lines):

diff -r 3e30bed57f44 -r 1f302e8edb0f sys/arch/news68k/news68k/pmap_bootstrap.c
--- a/sys/arch/news68k/news68k/pmap_bootstrap.c Fri Dec 23 10:19:57 2016 +0000
+++ b/sys/arch/news68k/news68k/pmap_bootstrap.c Fri Dec 23 10:48:12 2016 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: pmap_bootstrap.c,v 1.40 2012/02/10 06:28:39 mhitch Exp $       */
+/*     $NetBSD: pmap_bootstrap.c,v 1.41 2016/12/23 10:48:12 maya Exp $ */
 
 /* 
  * Copyright (c) 1991, 1993
@@ -39,7 +39,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: pmap_bootstrap.c,v 1.40 2012/02/10 06:28:39 mhitch Exp $");
+__KERNEL_RCSID(0, "$NetBSD: pmap_bootstrap.c,v 1.41 2016/12/23 10:48:12 maya Exp $");
 
 #include "opt_m68k_arch.h"
 
@@ -56,7 +56,7 @@
 extern char *extiobase;
 extern char *cache_ctl, *cache_clr;
 
-extern int maxmem, physmem;
+extern int maxmem;
 extern paddr_t avail_start, avail_end;
 
 /*
diff -r 3e30bed57f44 -r 1f302e8edb0f sys/arch/next68k/next68k/pmap_bootstrap.c
--- a/sys/arch/next68k/next68k/pmap_bootstrap.c Fri Dec 23 10:19:57 2016 +0000
+++ b/sys/arch/next68k/next68k/pmap_bootstrap.c Fri Dec 23 10:48:12 2016 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: pmap_bootstrap.c,v 1.43 2014/01/05 06:30:48 tsutsui Exp $      */
+/*     $NetBSD: pmap_bootstrap.c,v 1.44 2016/12/23 10:48:12 maya Exp $ */
 
 /*
  * This file was taken from mvme68k/mvme68k/pmap_bootstrap.c
@@ -45,7 +45,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: pmap_bootstrap.c,v 1.43 2014/01/05 06:30:48 tsutsui Exp $");
+__KERNEL_RCSID(0, "$NetBSD: pmap_bootstrap.c,v 1.44 2016/12/23 10:48:12 maya Exp $");
 
 #include "opt_m68k_arch.h"
 
@@ -65,7 +65,7 @@
 
 extern char *etext;
 
-extern int maxmem, physmem;
+extern int maxmem;
 extern paddr_t avail_start, avail_end;
 extern phys_ram_seg_t mem_clusters[];
 extern int mem_cluster_cnt;



Home | Main Index | Thread Index | Old Index