/* * linux/drivers/devfreq/governor_powersave.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_powersave_func(struct devfreq *df, unsigned long *freq) { /* * target callback should be able to get ceiling value as * said in devfreq.h */ *freq = df->min_freq; return 0; }Contributors
Person | Tokens | Prop | Commits | CommitProp | |
myungjoo ham | myungjoo ham | 27 | 100.00% | 2 | 100.00% |
Total | 27 | 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 | 37.91% | 3 | 42.86% |
myungjoo ham | myungjoo ham | 50 | 27.47% | 2 | 28.57% |
venkat rajagopal | venkat rajagopal | 45 | 24.73% | 1 | 14.29% |
xiaoguang chen | xiaoguang chen | 18 | 9.89% | 1 | 14.29% |
Total | 182 | 100.00% | 7 | 100.00% |