Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 132648
b: refs/heads/master
c: 20174b6
h: refs/heads/master
v: v3
  • Loading branch information
Dave Jones committed Feb 25, 2009
1 parent de3841d commit 6569bcb
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: b5c916666240032b29f73a1ca52c3e0fac37335c
refs/heads/master: 20174b65d9fdc8dddef3d2ab9647e01fdab13064
22 changes: 11 additions & 11 deletions trunk/arch/x86/kernel/cpu/cpufreq/cpufreq-nforce2.c
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ MODULE_PARM_DESC(fid, "CPU multiplier to use (11.5 = 115)");
MODULE_PARM_DESC(min_fsb,
"Minimum FSB to use, if not defined: current FSB - 50");

#define PFX "cpufreq-nforce2: "
#define dprintk(msg...) cpufreq_debug_printk(CPUFREQ_DEBUG_DRIVER, \
"cpufreq-nforce2", msg)

Expand Down Expand Up @@ -175,13 +176,13 @@ static int nforce2_set_fsb(unsigned int fsb)
int pll = 0;

if ((fsb > max_fsb) || (fsb < NFORCE2_MIN_FSB)) {
printk(KERN_ERR "cpufreq: FSB %d is out of range!\n", fsb);
printk(KERN_ERR PFX "FSB %d is out of range!\n", fsb);
return -EINVAL;
}

tfsb = nforce2_fsb_read(0);
if (!tfsb) {
printk(KERN_ERR "cpufreq: Error while reading the FSB\n");
printk(KERN_ERR PFX "Error while reading the FSB\n");
return -EINVAL;
}

Expand Down Expand Up @@ -278,7 +279,7 @@ static int nforce2_target(struct cpufreq_policy *policy,
/* local_irq_save(flags); */

if (nforce2_set_fsb(target_fsb) < 0)
printk(KERN_ERR "cpufreq: Changing FSB to %d failed\n",
printk(KERN_ERR PFX "Changing FSB to %d failed\n",
target_fsb);
else
dprintk("Changed FSB successfully to %d\n",
Expand Down Expand Up @@ -329,9 +330,8 @@ static int nforce2_cpu_init(struct cpufreq_policy *policy)
/* FIX: Get FID from CPU */
if (!fid) {
if (!cpu_khz) {
printk(KERN_WARNING
"cpufreq: cpu_khz not set, "
"can't calculate multiplier!\n");
printk(KERN_WARNING PFX
"cpu_khz not set, can't calculate multiplier!\n");
return -ENODEV;
}

Expand All @@ -346,7 +346,7 @@ static int nforce2_cpu_init(struct cpufreq_policy *policy)
}
}

printk(KERN_INFO "cpufreq: FSB currently at %i MHz, FID %d.%d\n", fsb,
printk(KERN_INFO PFX "FSB currently at %i MHz, FID %d.%d\n", fsb,
fid / 10, fid % 10);

/* Set maximum FSB to FSB at boot time */
Expand Down Expand Up @@ -402,10 +402,10 @@ static unsigned int nforce2_detect_chipset(void)
if (nforce2_dev == NULL)
return -ENODEV;

printk(KERN_INFO "cpufreq: Detected nForce2 chipset revision %X\n",
printk(KERN_INFO PFX "Detected nForce2 chipset revision %X\n",
nforce2_dev->revision);
printk(KERN_INFO
"cpufreq: FSB changing is maybe unstable and can lead to "
printk(KERN_INFO PFX
"FSB changing is maybe unstable and can lead to "
"crashes and data loss.\n");

return 0;
Expand All @@ -424,7 +424,7 @@ static int __init nforce2_init(void)

/* detect chipset */
if (nforce2_detect_chipset()) {
printk(KERN_ERR "cpufreq: No nForce2 chipset.\n");
printk(KERN_ERR PFX "No nForce2 chipset.\n");
return -ENODEV;
}

Expand Down

0 comments on commit 6569bcb

Please sign in to comment.