2 * linux/drivers/devfreq/governor_powersave.c
4 * Copyright (C) 2011 Samsung Electronics
5 * MyungJoo Ham <myungjoo.ham@samsung.com>
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
12 #include <linux/devfreq.h>
13 #include <linux/module.h>
16 static int devfreq_powersave_func(struct devfreq *df,
20 * target callback should be able to get ceiling value as
27 static int devfreq_powersave_handler(struct devfreq *devfreq,
28 unsigned int event, void *data)
32 if (event == DEVFREQ_GOV_START) {
33 mutex_lock(&devfreq->lock);
34 ret = update_devfreq(devfreq);
35 mutex_unlock(&devfreq->lock);
41 static struct devfreq_governor devfreq_powersave = {
43 .get_target_freq = devfreq_powersave_func,
44 .event_handler = devfreq_powersave_handler,
47 static int __init devfreq_powersave_init(void)
49 return devfreq_add_governor(&devfreq_powersave);
51 subsys_initcall(devfreq_powersave_init);
53 static void __exit devfreq_powersave_exit(void)
57 ret = devfreq_remove_governor(&devfreq_powersave);
59 pr_err("%s: failed remove governor %d\n", __func__, ret);
63 module_exit(devfreq_powersave_exit);
64 MODULE_LICENSE("GPL");