diff options
Diffstat (limited to 'arch/x86/kernel/cpu/cpufreq/longrun.c')
| -rw-r--r-- | arch/x86/kernel/cpu/cpufreq/longrun.c | 17 | 
1 files changed, 7 insertions, 10 deletions
diff --git a/arch/x86/kernel/cpu/cpufreq/longrun.c b/arch/x86/kernel/cpu/cpufreq/longrun.c index d9f51367666..34ea359b370 100644 --- a/arch/x86/kernel/cpu/cpufreq/longrun.c +++ b/arch/x86/kernel/cpu/cpufreq/longrun.c @@ -15,9 +15,6 @@  #include <asm/msr.h>  #include <asm/processor.h> -#define dprintk(msg...) cpufreq_debug_printk(CPUFREQ_DEBUG_DRIVER, \ -		"longrun", msg) -  static struct cpufreq_driver	longrun_driver;  /** @@ -40,14 +37,14 @@ static void __cpuinit longrun_get_policy(struct cpufreq_policy *policy)  	u32 msr_lo, msr_hi;  	rdmsr(MSR_TMTA_LONGRUN_FLAGS, msr_lo, msr_hi); -	dprintk("longrun flags are %x - %x\n", msr_lo, msr_hi); +	pr_debug("longrun flags are %x - %x\n", msr_lo, msr_hi);  	if (msr_lo & 0x01)  		policy->policy = CPUFREQ_POLICY_PERFORMANCE;  	else  		policy->policy = CPUFREQ_POLICY_POWERSAVE;  	rdmsr(MSR_TMTA_LONGRUN_CTRL, msr_lo, msr_hi); -	dprintk("longrun ctrl is %x - %x\n", msr_lo, msr_hi); +	pr_debug("longrun ctrl is %x - %x\n", msr_lo, msr_hi);  	msr_lo &= 0x0000007F;  	msr_hi &= 0x0000007F; @@ -150,7 +147,7 @@ static unsigned int longrun_get(unsigned int cpu)  		return 0;  	cpuid(0x80860007, &eax, &ebx, &ecx, &edx); -	dprintk("cpuid eax is %u\n", eax); +	pr_debug("cpuid eax is %u\n", eax);  	return eax * 1000;  } @@ -196,7 +193,7 @@ static int __cpuinit longrun_determine_freqs(unsigned int *low_freq,  		rdmsr(MSR_TMTA_LRTI_VOLT_MHZ, msr_lo, msr_hi);  		*high_freq = msr_lo * 1000; /* to kHz */ -		dprintk("longrun table interface told %u - %u kHz\n", +		pr_debug("longrun table interface told %u - %u kHz\n",  				*low_freq, *high_freq);  		if (*low_freq > *high_freq) @@ -207,7 +204,7 @@ static int __cpuinit longrun_determine_freqs(unsigned int *low_freq,  	/* set the upper border to the value determined during TSC init */  	*high_freq = (cpu_khz / 1000);  	*high_freq = *high_freq * 1000; -	dprintk("high frequency is %u kHz\n", *high_freq); +	pr_debug("high frequency is %u kHz\n", *high_freq);  	/* get current borders */  	rdmsr(MSR_TMTA_LONGRUN_CTRL, msr_lo, msr_hi); @@ -233,7 +230,7 @@ static int __cpuinit longrun_determine_freqs(unsigned int *low_freq,  		/* restore values */  		wrmsr(MSR_TMTA_LONGRUN_CTRL, save_lo, save_hi);  	} -	dprintk("percentage is %u %%, freq is %u MHz\n", ecx, eax); +	pr_debug("percentage is %u %%, freq is %u MHz\n", ecx, eax);  	/* performance_pctg = (current_freq - low_freq)/(high_freq - low_freq)  	 * eqals @@ -249,7 +246,7 @@ static int __cpuinit longrun_determine_freqs(unsigned int *low_freq,  	edx = ((eax - ebx) * 100) / (100 - ecx);  	*low_freq = edx * 1000; /* back to kHz */ -	dprintk("low frequency is %u kHz\n", *low_freq); +	pr_debug("low frequency is %u kHz\n", *low_freq);  	if (*low_freq > *high_freq)  		*low_freq = *high_freq;  |