Commit c2076f46 authored by Dave Jones's avatar Dave Jones Committed by Dave Jones

[CPUFREQ] Quieten powernow-k7 in the built-in case.

The other cpufreq drivers are quiet in the 'dont have hardware' case, so this should follow suit.
parent e19e558d
...@@ -106,7 +106,9 @@ static int check_powernow(void) ...@@ -106,7 +106,9 @@ static int check_powernow(void)
/* Get maximum capabilities */ /* Get maximum capabilities */
maxei = cpuid_eax (0x80000000); maxei = cpuid_eax (0x80000000);
if (maxei < 0x80000007) { /* Any powernow info ? */ if (maxei < 0x80000007) { /* Any powernow info ? */
#ifdef MODULE
printk (KERN_INFO PFX "No powernow capabilities detected\n"); printk (KERN_INFO PFX "No powernow capabilities detected\n");
#endif
return 0; return 0;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment