1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-19 10:53:58 +00:00

Fix compiler error with missing/unneded ')'

This commit is contained in:
Andrey A. Chernov 2008-10-22 14:45:30 +00:00
parent 8e6a6bfcce
commit e6e4ece7d3
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=184161

View File

@ -842,9 +842,9 @@ printcpuinfo(void)
cpu_feature &= ~CPUID_HTT;
if (!tsc_is_invariant &&
(strcmp(cpu_vendor, "AuthenticAMD") == 0 &&
(amd_pminfo & AMDPM_TSC_INVARIANT) != 0 ||
I386_CPU_FAMILY(cpu_id) >= 0x10))) {
((strcmp(cpu_vendor, "AuthenticAMD") == 0 &&
(amd_pminfo & AMDPM_TSC_INVARIANT) != 0) ||
I386_CPU_FAMILY(cpu_id) >= 0x10)) {
tsc_is_invariant = 1;
printf("\n P-state invariant TSC");
}