diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2005-09-27 21:50:40 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2005-09-27 21:50:40 +0000 |
commit | 9e141689d7bbfe968a6a51587e315f5c0f676cc5 (patch) | |
tree | 6b9fe759b893b9b65572ff5496d73a66259e0c85 /sys/arch/mvme68k | |
parent | 6ebf34b0a9ffc616088bb8dba37b0a8fbf05eaea (diff) |
Do not initialize physmem to a magic value at compile time.
Diffstat (limited to 'sys/arch/mvme68k')
-rw-r--r-- | sys/arch/mvme68k/mvme68k/machdep.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/sys/arch/mvme68k/mvme68k/machdep.c b/sys/arch/mvme68k/mvme68k/machdep.c index 9f5066b499d..31f3ef2354b 100644 --- a/sys/arch/mvme68k/mvme68k/machdep.c +++ b/sys/arch/mvme68k/mvme68k/machdep.c @@ -1,4 +1,4 @@ -/* $OpenBSD: machdep.c,v 1.88 2005/08/06 14:26:52 miod Exp $ */ +/* $OpenBSD: machdep.c,v 1.89 2005/09/27 21:50:39 miod Exp $ */ /* * Copyright (c) 1995 Theo de Raadt @@ -110,8 +110,6 @@ #include <ddb/db_extern.h> #endif -#define MAXMEM 64*1024 /* XXX - from cmap.h */ - #include <uvm/uvm_extern.h> /* the following is used externally (sysctl_hw) */ @@ -143,7 +141,7 @@ int bufpages = 0; int bufcachepercent = BUFCACHEPERCENT; int maxmem; /* max memory per process */ -int physmem = MAXMEM; /* max supported memory, changes to actual */ +int physmem; /* max supported memory, changes to actual */ /* * safepri is a safe priority for sleep to set for a spin-wait * during autoconfiguration or after a panic. |