swh:1:snp:49cd9498d6cccc5e78252c27dcb645bcf7bf0c91
Raw File
Tip revision: a0d271cbfed1dd50278c6b06bead3d00ba0a88f9 authored by Linus Torvalds on 30 September 2012, 23:47:46 UTC
Linux 3.6
Tip revision: a0d271c
governor_powersave.c
/*
 *  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 "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;
}

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,
};
back to top