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:
parent
8e6a6bfcce
commit
e6e4ece7d3
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=184161
@ -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");
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user