aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/cpufreq
diff options
context:
space:
mode:
authorTodd Poynor <toddpoynor@google.com>2012-04-17 17:39:34 -0700
committerTodd Poynor <toddpoynor@google.com>2012-04-18 19:51:14 -0700
commit801cb6260fb5cae3bbc513927b583447c38d9deb (patch)
tree00f5a1bfe8379760d047582048bb2da67849fbd5 /drivers/cpufreq
parentc2ad521b982d949c5dfabe5ff257bb4f33ca8b51 (diff)
downloadkernel_samsung_tuna-801cb6260fb5cae3bbc513927b583447c38d9deb.zip
kernel_samsung_tuna-801cb6260fb5cae3bbc513927b583447c38d9deb.tar.gz
kernel_samsung_tuna-801cb6260fb5cae3bbc513927b583447c38d9deb.tar.bz2
cpufreq: interactive: adjust code and documentation to match
Change-Id: If59c668d514a29febe5c35404fd9d01df8548eb1 Signed-off-by: Todd Poynor <toddpoynor@google.com>
Diffstat (limited to 'drivers/cpufreq')
-rw-r--r--drivers/cpufreq/cpufreq_interactive.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/cpufreq/cpufreq_interactive.c b/drivers/cpufreq/cpufreq_interactive.c
index 14880dd..c9f348f 100644
--- a/drivers/cpufreq/cpufreq_interactive.c
+++ b/drivers/cpufreq/cpufreq_interactive.c
@@ -66,19 +66,19 @@ static struct mutex set_speed_lock;
static u64 hispeed_freq;
/* Go to hi speed when CPU load at or above this value. */
-#define DEFAULT_GO_HISPEED_LOAD 95
+#define DEFAULT_GO_HISPEED_LOAD 85
static unsigned long go_hispeed_load;
/*
* The minimum amount of time to spend at a frequency before we can ramp down.
*/
-#define DEFAULT_MIN_SAMPLE_TIME 20 * USEC_PER_MSEC
+#define DEFAULT_MIN_SAMPLE_TIME (80 * USEC_PER_MSEC)
static unsigned long min_sample_time;
/*
* The sample rate of the timer used to increase frequency
*/
-#define DEFAULT_TIMER_RATE 20 * USEC_PER_MSEC
+#define DEFAULT_TIMER_RATE (20 * USEC_PER_MSEC)
static unsigned long timer_rate;
/*