Skip to content

Commit

Permalink
Merge branch 'pm-devfreq'
Browse files Browse the repository at this point in the history
* pm-devfreq:
  PM: devfreq: init performance/powersave governor
  • Loading branch information
Rafael J. Wysocki committed May 11, 2012
2 parents d48b97b + 0b7c328 commit 3a9da04
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
7 changes: 7 additions & 0 deletions drivers/devfreq/governor_performance.c
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
*/

#include <linux/devfreq.h>
#include "governor.h"

static int devfreq_performance_func(struct devfreq *df,
unsigned long *freq)
Expand All @@ -25,8 +26,14 @@ static int devfreq_performance_func(struct devfreq *df,
return 0;
}

static int performance_init(struct devfreq *devfreq)
{
return update_devfreq(devfreq);
}

const struct devfreq_governor devfreq_performance = {
.name = "performance",
.init = performance_init,
.get_target_freq = devfreq_performance_func,
.no_central_polling = true,
};
7 changes: 7 additions & 0 deletions drivers/devfreq/governor_powersave.c
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
*/

#include <linux/devfreq.h>
#include "governor.h"

static int devfreq_powersave_func(struct devfreq *df,
unsigned long *freq)
Expand All @@ -22,8 +23,14 @@ static int devfreq_powersave_func(struct devfreq *df,
return 0;
}

static int powersave_init(struct devfreq *devfreq)
{
return update_devfreq(devfreq);
}

const struct devfreq_governor devfreq_powersave = {
.name = "powersave",
.init = powersave_init,
.get_target_freq = devfreq_powersave_func,
.no_central_polling = true,
};

0 comments on commit 3a9da04

Please sign in to comment.