2005-10-21 23:56:24

by Chris Wright

[permalink] [raw]
Subject: [PATCH] typo fix in last cpufreq powernow patch

Not sure how it slipped by, but here's a trivial typo fix for powernow.

Signed-off-by: Chris Wright <[email protected]>

--- a/arch/i386/kernel/cpu/cpufreq/powernow-k8.c
+++ b/arch/i386/kernel/cpu/cpufreq/powernow-k8.c
@@ -175,7 +175,7 @@ static int write_new_fid(struct powernow
wrmsr(MSR_FIDVID_CTL, lo, data->plllock * PLL_LOCK_CONVERSION);
if (i++ > 100) {
printk(KERN_ERR PFX "internal error - pending bit very stuck - no further pstate changes possible\n");
- retrun 1;
+ return 1;
}
} while (query_current_values_with_pending_wait(data));


2005-10-22 01:23:47

by Dave Jones

[permalink] [raw]
Subject: Re: [PATCH] typo fix in last cpufreq powernow patch

On Fri, Oct 21, 2005 at 04:56:08PM -0700, Chris Wright wrote:
> Not sure how it slipped by, but here's a trivial typo fix for powernow.

Ugh, how embarressing. I should have compile tested that at least.

Mea Culpa.

Dave