/* * linux/drivers/devfreq/governor_performance.c * * Copyright (C) 2011 Samsung Electronics * MyungJoo Ham <myungjoo.ham@samsung.com> * * 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. */ #include <linux/devfreq.h> #include <linux/module.h> #include "governor.h"
static int devfreq_performance_func(struct devfreq *df, unsigned long *freq) { /* * target callback should be able to get floor value as * said in devfreq.h */ if (!df->max_freq) *freq = UINT_MAX; else *freq = df->max_freq; return 0; }Contributors
Person | Tokens | Prop | Commits | CommitProp | |
myungjoo ham | myungjoo ham | 40 | 100.00% | 2 | 100.00% |
Total | 40 | 100.00% | 2 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp | |
venkat rajagopal | venkat rajagopal | 43 | 74.14% | 1 | 50.00% |
xiaoguang chen | xiaoguang chen | 15 | 25.86% | 1 | 50.00% |
Total | 58 | 100.00% | 2 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp | |
nishanth menon | nishanth menon | 16 | 100.00% | 1 | 100.00% |
Total | 16 | 100.00% | 1 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp | |
nishanth menon | nishanth menon | 34 | 100.00% | 1 | 100.00% |
Total | 34 | 100.00% | 1 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp | |
nishanth menon | nishanth menon | 69 | 35.38% | 3 | 42.86% |
myungjoo ham | myungjoo ham | 63 | 32.31% | 2 | 28.57% |
venkat rajagopal | venkat rajagopal | 45 | 23.08% | 1 | 14.29% |
xiaoguang chen | xiaoguang chen | 18 | 9.23% | 1 | 14.29% |
Total | 195 | 100.00% | 7 | 100.00% |