diff options
| author | ronaxdevil <pratabidya.007@gmail.com> | 2020-05-07 06:47:15 +0530 |
|---|---|---|
| committer | ronaxdevil <pratabidya.007@gmail.com> | 2020-05-07 14:45:17 +0530 |
| commit | bfb77c80369385a7070907ca303687e4101d7755 (patch) | |
| tree | 0d8ffee0d59170abf8d552a416a4d82873aa6f95 | |
| parent | 31c589827ea8aaaa32b963c91d37d12393c6c603 (diff) | |
cpufreq: cpu-boost: set cpu input boost time to 750msq10.0
- Don't boost cpu unnecessarily for so long (previous was 1500ms) , it's help to make kernel more power efficient with out compromising significant smoothness
Signed-off-by: ronaxdevil <pratabidya.007@gmail.com>
| -rw-r--r-- | drivers/cpufreq/cpu-boost.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/cpufreq/cpu-boost.c b/drivers/cpufreq/cpu-boost.c index 2c4465c4f451..372c7d0deb79 100644 --- a/drivers/cpufreq/cpu-boost.c +++ b/drivers/cpufreq/cpu-boost.c @@ -40,7 +40,7 @@ static struct work_struct input_boost_work; static unsigned int input_boost_enabled = 1; module_param(input_boost_enabled, uint, 0644); -static unsigned int input_boost_ms = 1500; +static unsigned int input_boost_ms = 750; module_param(input_boost_ms, uint, 0644); static bool sched_boost_on_input; |
