safer check if TSC is useable (and CPU detect has occurred)

This was SVN commit r1361.
This commit is contained in:
janwas 2004-11-19 22:42:20 +00:00
parent 2f9a735232
commit d489c48652

View File

@ -173,7 +173,7 @@ static int choose_impl()
// frequency changes are too often and drastic to correct, // frequency changes are too often and drastic to correct,
// and we don't want to mess with the system power settings. // and we don't want to mess with the system power settings.
// => unsafe. // => unsafe.
if(ia32_cap(TSC) && cpu_freq > 0.0) if(cpu_freq > 0.0 && ia32_cap(TSC))
{ {
safe = (cpu_smp == 0 && cpu_speedstep == 0); safe = (cpu_smp == 0 && cpu_speedstep == 0);
SAFETY_OVERRIDE(HRT_TSC); SAFETY_OVERRIDE(HRT_TSC);