Skip to content

Commit

Permalink
[CPUFREQ] dprintk adjustments to cpufreq-nforce2
Browse files Browse the repository at this point in the history
Remove KERN_* suffixes from some NForce2 cpufreq driver's dprintk-s.

Signed-off-by: Jan Beulich <jbeulich@novell.com>
Signed-off-by: Dave Jones <davej@redhat.com>
  • Loading branch information
Jan Beulich authored and Dave Jones committed Jun 4, 2006
1 parent 1f729e0 commit 0fc25dd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions arch/i386/kernel/cpu/cpufreq/cpufreq-nforce2.c
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,7 @@ static int nforce2_target(struct cpufreq_policy *policy,
if (freqs.old == freqs.new)
return 0;

dprintk(KERN_INFO "cpufreq: Old CPU frequency %d kHz, new %d kHz\n",
dprintk("Old CPU frequency %d kHz, new %d kHz\n",
freqs.old, freqs.new);

cpufreq_notify_transition(&freqs, CPUFREQ_PRECHANGE);
Expand All @@ -277,7 +277,7 @@ static int nforce2_target(struct cpufreq_policy *policy,
printk(KERN_ERR "cpufreq: Changing FSB to %d failed\n",
target_fsb);
else
dprintk(KERN_INFO "cpufreq: Changed FSB successfully to %d\n",
dprintk("Changed FSB successfully to %d\n",
target_fsb);

/* Enable IRQs */
Expand Down

0 comments on commit 0fc25dd

Please sign in to comment.