From e24605a02254e269e943a85cd9bb5c52aa0a2c95 Mon Sep 17 00:00:00 2001 From: Jon Benson Date: Thu, 21 Oct 2010 19:19:54 +1100 Subject: [PATCH] Set 998MHz as default speed. People can still overclock with SetCPU. After benchmarking how little improvement overclocking actually provides I've chosen to default to no overclock as it should be more stable. --- arch/arm/mach-msm/cpufreq.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/arm/mach-msm/cpufreq.c b/arch/arm/mach-msm/cpufreq.c index dd75afe7..1fffb585 100644 --- a/arch/arm/mach-msm/cpufreq.c +++ b/arch/arm/mach-msm/cpufreq.c @@ -91,7 +91,7 @@ static int __init msm_cpufreq_init(struct cpufreq_policy *policy) BUG_ON(cpufreq_frequency_table_cpuinfo(policy, table)); policy->cur = acpuclk_get_rate(); #ifdef CONFIG_HTCLEO_OVERCLOCK - policy->max = 1113600; + policy->max = 998400; #endif #ifdef CONFIG_HTCLEO_EXOVERCLOCK policy->max = 1113600;