diff options
Diffstat (limited to 'perl-install/cpufreq.pm')
-rw-r--r-- | perl-install/cpufreq.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/cpufreq.pm b/perl-install/cpufreq.pm index 17a39b25e..91fb06d3f 100644 --- a/perl-install/cpufreq.pm +++ b/perl-install/cpufreq.pm @@ -110,9 +110,9 @@ sub probe_powernow_k7() { sub probe_powernow_k8() { any { get_vendor($_) eq "AMD" && ( - ( $_->{'cpu family'} == 15 && ($_->{'power management'} =~ /\bfid\b/ || has_flag($_, 'fid')) ) # frequency ID control) + ($_->{'cpu family'} == 15 && ($_->{'power management'} =~ /\bfid\b/ || has_flag($_, 'fid'))) # frequency ID control) || - ( $_->{'cpu family'} == 16 && ($_->{'power management'} =~ /\bhwpstate\b/ )) # support for Athlon/Phenom II processors (#58477)) + ($_->{'cpu family'} == 16 && ($_->{'power management'} =~ /\bhwpstate\b/)) # support for Athlon/Phenom II processors (#58477)) ); } get_cpus(); } |