Revert revision 1.4.

Intel CPUs with family 0x6, model 0xE and later (i.e., Intel Core(TM))
have a PMC architecture that differs somewhat from previous CPUs in
family 0x6.  Even though the basic programming model is similar, the
documented set of legal values that may be loaded into their PMC MSRs
differs from that of the previous PMCs in family 0x6 and reusing bit
values valid for the older PMCs could result in undefined behaviour in
the general case.
This commit is contained in:
Joseph Koshy 2007-11-29 06:43:58 +00:00
parent 7628402b07
commit 4dd9b0c085

View File

@ -82,7 +82,7 @@ pmc_intel_initialize(void)
case 0x7: case 0x8: case 0xA: case 0xB:
cputype = PMC_CPU_INTEL_PIII;
break;
case 0x9: case 0xD: case 0xE:
case 0x9: case 0xD:
cputype = PMC_CPU_INTEL_PM;
break;
}