From 92f6adb97669f9382204aa5b5401ece18c93fc2e Mon Sep 17 00:00:00 2001 From: "Ronald G. Minnich" Date: Thu, 8 Mar 2001 23:44:52 +0000 Subject: [PATCH] Take out auto memory sizing. Just use 64 MB for now. --- src/northbridge/via/vt8601/northbridge.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/northbridge/via/vt8601/northbridge.c b/src/northbridge/via/vt8601/northbridge.c index 62966cc4e3..5e5c1e1b55 100644 --- a/src/northbridge/via/vt8601/northbridge.c +++ b/src/northbridge/via/vt8601/northbridge.c @@ -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; }