Module Name: src
Committed By: christos
Date: Mon Jul 30 17:20:00 UTC 2012
Modified Files:
src/sys/arch/x68k/x68k: machdep.c
Log Message:
Remove extra definition of physmem (locore sets it anyway). Someone please
check.
To generate a diff of this commit:
cvs rdiff -u -r1.184 -r1.185 src/sys/arch/x68k/x68k/machdep.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/x68k/x68k/machdep.c
diff -u src/sys/arch/x68k/x68k/machdep.c:1.184 src/sys/arch/x68k/x68k/machdep.c:1.185
--- src/sys/arch/x68k/x68k/machdep.c:1.184 Fri Jul 27 01:36:12 2012
+++ src/sys/arch/x68k/x68k/machdep.c Mon Jul 30 13:19:59 2012
@@ -1,4 +1,4 @@
-/* $NetBSD: machdep.c,v 1.184 2012/07/27 05:36:12 matt Exp $ */
+/* $NetBSD: machdep.c,v 1.185 2012/07/30 17:19:59 christos Exp $ */
/*
* Copyright (c) 1988 University of Utah.
@@ -39,7 +39,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: machdep.c,v 1.184 2012/07/27 05:36:12 matt Exp $");
+__KERNEL_RCSID(0, "$NetBSD: machdep.c,v 1.185 2012/07/30 17:19:59 christos Exp $");
#include "opt_ddb.h"
#include "opt_kgdb.h"
@@ -122,7 +122,6 @@ extern u_int lowram;
extern int end, *esym;
int maxmem; /* max memory per process */
-int physmem = MAXMEM; /* max supported memory, changes to actual */
/* prototypes for local functions */
void identifycpu(void);