Make EPIA-M use CONFIG_TSC.

git-svn-id: svn://svn.coreboot.org/coreboot/trunk@2039 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
Jonathan McDowell
2005-09-14 16:33:10 +00:00
parent 708743379a
commit 1718c4771b
2 changed files with 10 additions and 3 deletions

View File

@ -128,11 +128,12 @@ static unsigned long long calibrate_tsc(void)
delta >>= 20;
// save this for microsecond timing.
result = delta;
printk_spew("end %x:%x, start %x:%x\n",
endhigh, endlow, starthigh, startlow);
printk_spew("end %x, start %x\n", end, start);
printk_spew("32-bit delta %d\n", (unsigned long) delta);
printk_spew(__FUNCTION__ " 32-bit result is %d\n", result);
printk_spew("%s 32-bit result is %d\n",
__FUNCTION__,
result);
return delta;
}