Remove Maxmem.  It isn't used elsewhere in the system at this point...
realmem is used instead.
This commit is contained in:
imp 2009-01-15 08:01:50 +00:00
parent 5f0bc93619
commit 67abf0d907

View File

@ -85,6 +85,7 @@ __FBSDID("$FreeBSD$");
#include <machine/clock.h>
#include <machine/asm.h>
#include <machine/bootinfo.h>
#include <machine/hwfunc.h>
#ifdef DDB
#include <sys/kdb.h>
#include <ddb/ddb.h>
@ -102,7 +103,6 @@ static char cpu_model[30];
SYSCTL_STRING(_hw, HW_MODEL, model, CTLFLAG_RD, cpu_model, 0, "Machine model");
int cold = 1;
int Maxmem;
long realmem = 0;
int cpu_clock = MIPS_DEFAULT_HZ;
SYSCTL_INT(_hw, OID_AUTO, clockrate, CTLFLAG_RD,
@ -157,13 +157,8 @@ cpu_startup(void *dummy)
if (boothowto & RB_VERBOSE)
bootverbose++;
printf("real memory = %lu (%luK bytes)\n", ptoa(realmem), ptoa(realmem) / 1024);
/*
* Good {morning,afternoon,evening,night}.
*/
printf("real memory = %lu (%luK bytes)\n", ptoa(Maxmem),
ptoa(Maxmem) / 1024);
realmem = Maxmem;
/*
* Display any holes after the first chunk of extended memory.
*/