diff --git a/src/northbridge/via/vt8601/northbridge.c b/src/northbridge/via/vt8601/northbridge.c index 59d32386d0..3a09eaffdc 100644 --- a/src/northbridge/via/vt8601/northbridge.c +++ b/src/northbridge/via/vt8601/northbridge.c @@ -1,3 +1,4 @@ +#include #include unsigned long sizeram() @@ -21,9 +22,12 @@ unsigned long sizeram() prevmem = mem; } + 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); +#endif return totalmem; }