/* * linux/drivers/cpufreq/cpufreq_performance.c * * Copyright (C) 2002 - 2003 Dominik Brodowski <linux@brodo.de> * * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2 as * published by the Free Software Foundation. * */ #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt #include <linux/cpufreq.h> #include <linux/init.h> #include <linux/module.h>
static void cpufreq_gov_performance_limits(struct cpufreq_policy *policy) { pr_debug("setting to %u kHz\n", policy->max); __cpufreq_driver_target(policy, policy->max, CPUFREQ_RELATION_H); }Contributors
Person | Tokens | Prop | Commits | CommitProp |
Dave Jones | 27 | 87.10% | 2 | 40.00% |
Rafael J. Wysocki | 3 | 9.68% | 2 | 40.00% |
Dominik Brodowski | 1 | 3.23% | 1 | 20.00% |
Total | 31 | 100.00% | 5 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Dave Jones | 16 | 100.00% | 1 | 100.00% |
Total | 16 | 100.00% | 1 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Dave Jones | 15 | 100.00% | 1 | 100.00% |
Total | 15 | 100.00% | 1 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Rafael J. Wysocki | 13 | 100.00% | 1 | 100.00% |
Total | 13 | 100.00% | 1 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Rafael J. Wysocki | 13 | 100.00% | 1 | 100.00% |
Total | 13 | 100.00% | 1 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Dave Jones | 107 | 66.05% | 2 | 25.00% |
Rafael J. Wysocki | 44 | 27.16% | 3 | 37.50% |
Viresh Kumar | 10 | 6.17% | 2 | 25.00% |
Dominik Brodowski | 1 | 0.62% | 1 | 12.50% |
Total | 162 | 100.00% | 8 | 100.00% |