Take out auto memory sizing. Just use 64 MB for now.

This commit is contained in:
Ronald G. Minnich 2001-03-08 23:44:52 +00:00
commit 92f6adb976

View file

@ -36,11 +36,11 @@ unsigned long sizeram()
totalmem *= 1024;
printk("sizeram: returning 0x%x KB\n", totalmem);
#if 0
printk("sizeram: NOT returning 0x%x KB\n", totalmem);
printk("sizeram: there are still some SPD problems ... \n");
totalmem = 64 * 1024;
printk("sizeram: SO we return only 0x%x KB\n", totalmem);
#if 0
#endif
return totalmem;
}