From f46a929825d085f84cb251f5c32540126a2da4e2 Mon Sep 17 00:00:00 2001 From: Andrew Ip Date: Sun, 27 Apr 2003 07:26:03 +0000 Subject: [PATCH] fixed bug where only 64MB ram was detected --- src/northbridge/via/vt8601/northbridge.c | 7 ------- 1 file changed, 7 deletions(-) diff --git a/src/northbridge/via/vt8601/northbridge.c b/src/northbridge/via/vt8601/northbridge.c index ca71d5ade5..b654e68b20 100644 --- a/src/northbridge/via/vt8601/northbridge.c +++ b/src/northbridge/via/vt8601/northbridge.c @@ -49,13 +49,6 @@ static unsigned long __sizeram(void) totalmem -= sma_size; totalmem *= 1024; - printk_info("sizeram: returning 0x%x KB\n", totalmem); - printk_info("sizeram: NOT returning 0x%x KB\n", totalmem); - printk_info("sizeram: there are still some SPD problems ... \n"); - totalmem = 64 * 1024; - printk_info("sizeram: SO we return only 0x%x KB\n", totalmem); -#if 0 -#endif return totalmem; }