#include <linux/devfreq.h>
#include <linux/module.h>
#include "governor.h"
static int devfreq_performance_func(struct devfreq *df,
unsigned long *freq)
{ … }
static int devfreq_performance_handler(struct devfreq *devfreq,
unsigned int event, void *data)
{ … }
static struct devfreq_governor devfreq_performance = …;
static int __init devfreq_performance_init(void)
{ … }
subsys_initcall(devfreq_performance_init);
static void __exit devfreq_performance_exit(void)
{ … }
module_exit(devfreq_performance_exit);
MODULE_LICENSE(…) …;